Пример #1
0
 public function groupException($where)
 {
     $rowset = App_Model_Show_AroGroupMap::show()->getGroupException($where);
     for ($i = 0; $i < count($rowset); $i++) {
         $aReturn[$i] = $rowset[$i]['value'];
     }
     return isset($aReturn) ? $aReturn : '';
 }
Пример #2
0
 /**
  * @return obj
  */
 public function show()
 {
     if (!isset(self::$_instance)) {
         $show = __CLASS__;
         self::$_instance = new $show();
     }
     return self::$_instance;
 }