/**
  * DatabaseStructureController constructor
  *
  * @param string $url_query           URL query
  * @param int    $num_tables          Number of tables
  * @param int    $pos                 Current position in the list
  * @param bool   $db_is_system_schema DB is information_schema
  * @param int    $total_num_tables    Number of tables
  * @param array  $tables              Tables in the DB
  * @param bool   $is_show_stats       Whether stats show or not
  */
 public function __construct($url_query, $num_tables, $pos, $db_is_system_schema, $total_num_tables, $tables, $is_show_stats)
 {
     parent::__construct();
     $this->_url_query = $url_query;
     $this->_num_tables = $num_tables;
     $this->_pos = $pos;
     $this->_db_is_system_schema = $db_is_system_schema;
     $this->_total_num_tables = $total_num_tables;
     $this->_tables = $tables;
     $this->_is_show_stats = $is_show_stats;
 }
 /**
  * DatabaseStructureController constructor
  *
  * @param string $url_query URL query
  */
 public function __construct($url_query)
 {
     parent::__construct();
     $this->_url_query = $url_query;
 }