Ejemplo n.º 1
0
 /**
  * Return a list of all tables in the current database
  *
  * @return array
  */
 public function listTableNames()
 {
     $options = \XLite::getInstance()->getOptions('database_details');
     return preg_grep('/^' . preg_quote($options['table_prefix'], '.+/') . '/Ss', parent::listTableNames());
 }