Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 295 Rev 459
Línea 115... Línea 115...
115
    }
115
    }
Línea 116... Línea 116...
116
    
116
    
117
    /**
117
    /**
118
     *
118
     *
-
 
119
     * @param CompanySelfEvaluationTest $form
119
     * @param CompanySelfEvaluationTest $form
120
     * @param int $id
120
     * @return boolean
121
     * @return boolean
121
     */
122
     */
122
    public function update($form)
123
    public function update($form, $id)
123
    {
124
    {
124
        $hydrator = new ObjectPropertyHydrator();
125
        $hydrator = new ObjectPropertyHydrator();
125
        $values = $hydrator->extract($form);
126
        $values = $hydrator->extract($form);
Línea 126... Línea 127...
126
        $values = $this->removeEmpty($values);
127
        $values = $this->removeEmpty($values);
127
        
128
        
128
        $update = $this->sql->update(self::_TABLE);
129
        $update = $this->sql->update(self::_TABLE);
Línea 129... Línea 130...
129
        $update->set($values);
130
        $update->set($values);
130
        $update->where->equalTo('id', $form->id);
131
        $update->where->equalTo('id', $id);
Línea 131... Línea 132...
131
        
132