示例#1
0
文件: service.php 项目: vazahat/dudex
 /**
  * Returns all slides
  */
 public function getAllSlideList($uniqName = null)
 {
     if ($uniqName) {
         return $this->slideDao->findAllByUniqueName($uniqName);
     } else {
         return $this->slideDao->findAll();
     }
 }