Exemplo n.º 1
0
 public function insert(Model_Video $video)
 {
     //we don't deal with tags now
     $data = $video->toArray();
     unset($data['tags']);
     return $this->getDbTable()->insert($data);
 }