Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 553 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 553 Rev 646
Línea 57... Línea 57...
57
        $select->where->equalTo('id', $id);
57
        $select->where->equalTo('id', $id);
Línea 58... Línea 58...
58
        
58
        
59
        return $this->executeFetchOneObject($select, $prototype);
59
        return $this->executeFetchOneObject($select, $prototype);
Línea 60... Línea 60...
60
    }
60
    }
61
    
-
 
62
    
-
 
63
    /**
-
 
64
     *
-
 
65
     * @param int $form_id
-
 
66
     * @param int $user_id
-
 
67
     * @return CompanyPerformanceEvaluationTest
-
 
68
     */
-
 
69
    public function fetchOneBy($form_id, $user_id)
-
 
70
    {
-
 
71
        $prototype = new CompanyPerformanceEvaluationTest();
-
 
72
        
-
 
73
        $select = $this->sql->select(self::_TABLE);
-
 
74
        $select->where->equalTo('form_id', $form_id);
-
 
75
        $select->where->equalTo('user_id', $user_id);
-
 
76
        
-
 
Línea 77... Línea 61...
77
        return $this->executeFetchOneObject($select, $prototype);
61
    
78
    }
62
 
79
    
63
    
Línea 93... Línea 77...
93
    }
77
    }
Línea 94... Línea 78...
94
   
78
   
95
    
79
    
96
    /**
80
    /**
97
     * 
81
     * 
98
     * @param CompanyPerformanceEvaluationTest $form
82
     * @param CompanyPerformanceEvaluationTest $test
99
     * @return boolean
83
     * @return boolean
100
     */
84
     */
101
    public function insert($form)
85
    public function insert($test)
102
    {
86
    {
103
        $hydrator = new ObjectPropertyHydrator();
87
        $hydrator = new ObjectPropertyHydrator();
Línea 104... Línea 88...
104
        $values = $hydrator->extract($form);
88
        $values = $hydrator->extract($test);
105
        $values = $this->removeEmpty($values);
89
        $values = $this->removeEmpty($values);
Línea 106... Línea 90...
106
        
90
        
107
        $insert = $this->sql->insert(self::_TABLE);
91
        $insert = $this->sql->insert(self::_TABLE);
108
        $insert->values($values);
92
        $insert->values($values);
109
        
93
        
110
        $result = $this->executeInsert($insert);
94
        $result = $this->executeInsert($insert);
111
        if($result) {
95
        if($result) {
Línea 112... Línea 96...
112
            $form->id = $this->lastInsertId;
96
            $test->id = $this->lastInsertId;
113
        }
97
        }
114
        return $result;
98
        return $result;
115
    }
-
 
116
    
99
    }
117
    /**
100
    
118
     *
101
    /**
119
     * @param CompanyPerformanceEvaluationTest $form
102
     *
120
     * @param int $id
103
     * @param CompanyPerformanceEvaluationTest $test
121
     * @return boolean
104
     * @return boolean
122
     */
105
     */
Línea 123... Línea 106...
123
    public function update($form, $id)
106
    public function update($test)
124
    {
107
    {
125
        $hydrator = new ObjectPropertyHydrator();
108
        $hydrator = new ObjectPropertyHydrator();
Línea 126... Línea 109...
126
        $values = $hydrator->extract($form);
109
        $values = $hydrator->extract($test);
127
        $values = $this->removeEmpty($values);
110
        $values = $this->removeEmpty($values);
Línea 128... Línea 111...
128
        
111
        
129
        $update = $this->sql->update(self::_TABLE);
112
        $update = $this->sql->update(self::_TABLE);
130
        $update->set($values);
113
        $update->set($values);
131
        $update->where->equalTo('id', $id);
114
        $update->where->equalTo('id', $test->id);
132
        
115
        
133
        return $this->executeUpdate($update); 
116
        return $this->executeUpdate($update); 
134
    }
117
    }
135
    
118
    
136
    /**
119
    /**
Línea 137... Línea 120...
137
     *
120
     *
138
     * @param CompanyPerformanceEvaluationTest $form
121
     * @param CompanyPerformanceEvaluationTest $test