コード例 #1
0
ファイル: service.php プロジェクト: vazahat/dudex
 public function getCategoryList()
 {
     $list = $this->categoryDao->getCategories();
     $result = array();
     if ($list) {
         foreach ($list as $cat) {
             $result[$cat->id] = $cat;
         }
     }
     return $result;
 }