Ejemplo n.º 1
0
 static function getNoticeIDsByFile(File $file)
 {
     $f2p = new File_to_post();
     $f2p->selectAdd();
     $f2p->selectAdd('post_id');
     $f2p->file_id = $file->getID();
     $ids = array();
     if (!$f2p->find()) {
         throw new NoResultException($f2p);
     }
     return $f2p->fetchAll('post_id');
 }