예제 #1
0
파일: mango.php 프로젝트: ryross/A1
 public function update($criteria = array(), $safe = TRUE)
 {
     if (isset($this->_changed['password'])) {
         $this->password = $this->hash($this->password);
     }
     return parent::update($criteria, $safe);
 }
예제 #2
0
파일: Task.php 프로젝트: wouterrr/mangotask
 public function update($criteria = array(), $options = array())
 {
     $this->updated = time();
     return parent::update($criteria, $options);
 }