Ejemplo n.º 1
0
 public function _processUpdate($post)
 {
     if (empty($post)) {
         return true;
     }
     $tbl = $this->getResource();
     if ($tbl != null) {
         if ($tbl->bind($post) && $tbl->store()) {
             JofeApplication::enqueueMessage('Updated.');
         }
     }
     return true;
 }