예제 #1
0
파일: Setting.php 프로젝트: valizr/MMA
 public function fetchRowByConst($const, Default_Model_Setting $model)
 {
     $sql = $this->getDbTable()->select()->where('const = ?', $const);
     $result = $this->getDbTable()->fetchRow($sql);
     if (0 == count($result)) {
         return;
     }
     $model->setOptions($result->toArray());
     return $model;
 }