示例#1
0
文件: Desc.php 项目: PayIcam/shotgun
 public static function getAll($fun_id = null, $max = 10)
 {
     $qb = self::getQbBase();
     if ($fun_id) {
         $qb->where('d.payutc_fun_id = :fun_id')->setParameter('fun_id', $fun_id);
     }
     $qb->orderBy('d.desc_debut', 'DESC');
     if ($max) {
         $qb->setMaxResults(10);
     }
     $ret = array();
     foreach ($qb->execute()->fetchAll() as $data) {
         $desc = new Desc();
         $desc->bind($data);
         $ret[] = $desc;
     }
     return $ret;
 }