Exemple #1
0
 public static function getTableList($flip = false)
 {
     static $cache = NULL;
     if (!$cache) {
         $cache = parent::getTableList();
     }
     return $flip ? array_flip($cache) : $cache;
 }
Exemple #2
0
 public static function getTableList()
 {
     static $cache = NULL;
     if (!$cache) {
         $cache = parent::getTableList();
     }
     return $cache;
 }