Example #1
0
 /**
  * Parent overload
  * @return e_admin_ui
  */
 protected function parseAliases()
 {
     // parse table
     if (strpos($this->table, '.') !== false) {
         $tmp = explode('.', $this->table, 2);
         $this->table = $tmp[1];
         $this->tableAlias = $tmp[0];
         unset($tmp);
     }
     parent::parseAliases();
     return $this;
 }