public function __construct($type, $db, $table, $url_query, $num_tables, $pos, $db_is_system_schema, $total_num_tables, $tables, $is_show_stats, $tbl_is_view, $tbl_storage_engine, $table_info_num_rows, $tbl_collation, $showtable)
 {
     parent::__construct();
     $this->_type = $type;
     $this->_db = $db;
     $this->_table = $table;
     $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;
     $this->_url_query = $url_query;
     $this->_tbl_is_view = $tbl_is_view;
     $this->_tbl_storage_engine = $tbl_storage_engine;
     $this->_table_info_num_rows = $table_info_num_rows;
     $this->_tbl_collation = $tbl_collation;
     $this->_showtable = $showtable;
     $this->_table_obj = new PMA_Table($this->_table, $this->_db);
 }
 /**
  * Constructor
  */
 public function __construct()
 {
     parent::__construct();
     $this->db = $this->container->get('db');
 }
 /**
  * Constructor
  */
 function __construct()
 {
     parent::__construct();
     $this->db = $this->container->get('db');
     $this->table = $this->container->get('table');
 }