Example #1
0
 public function getCategoryList()
 {
     $list = $this->categoryDao->getCategories();
     $result = array();
     if ($list) {
         foreach ($list as $cat) {
             $result[$cat->id] = $cat;
         }
     }
     return $result;
 }