Exemplo n.º 1
0
Arquivo: show.php Projeto: rsesek/nztv
 public static function FetchByName($name)
 {
     $show = new Show();
     $show->set_condition('name = :name');
     $show->name = $name;
     try {
         $show->FetchInto();
         return $show;
     } catch (\phalanx\data\ModelException $e) {
         return NULL;
     }
 }