コード例 #1
0
ファイル: Model.php プロジェクト: cheevauva/trash
 /**
  * @param array $bind  [ webpage => [], page => [] ]
  * @return type
  */
 public function add($bind)
 {
     if ($this->getByAlias($bind['alias'])) {
         throw new Exception('Page with this alias is exists', 1);
     }
     return parent::add($bind);
 }
コード例 #2
0
ファイル: Model.php プロジェクト: cheevauva/trash
 public function add($bind)
 {
     $bind['date'] = date('Y-m-d');
     return parent::add($bind);
 }