Translated using Weblate (Kyrgyz)
[phpmyadmin.git] / tbl_structure.php
blob88d7f6c271393350e79109700b00aa9fc91f2821
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Displays table structure infos like columns, indexes, size, rows
5 * and allows manipulation of indexes and columns
7 * @package PhpMyAdmin
8 */
10 namespace PMA;
12 use PMA\libraries\controllers\TableStructureController;
13 use PMA\libraries\Response;
15 require_once 'libraries/common.inc.php';
16 require_once 'libraries/tbl_info.inc.php';
17 require_once 'libraries/mysql_charsets.inc.php';
18 require_once 'libraries/bookmark.lib.php';
19 require_once 'libraries/config/messages.inc.php';
20 require_once 'libraries/config/user_preferences.forms.php';
21 require_once 'libraries/config/page_settings.forms.php';
23 $container = libraries\di\Container::getDefaultContainer();
24 $container->factory('PMA\libraries\controllers\TableStructureController');
25 $container->alias(
26 'TableStructureController', 'PMA\libraries\controllers\TableStructureController'
28 $container->set('PMA\libraries\Response', Response::getInstance());
29 $container->alias('response', 'PMA\libraries\Response');
31 global $db, $table, $db_is_system_schema, $tbl_is_view, $tbl_storage_engine,
32 $table_info_num_rows, $tbl_collation, $showtable;
33 /* Define dependencies for the concerned controller */
34 $dependency_definitions = array(
35 'db' => $db,
36 'table' => $table,
37 'url_query' => &$GLOBALS['url_query'],
38 'db_is_system_schema' => $db_is_system_schema,
39 'tbl_is_view' => $tbl_is_view,
40 'tbl_storage_engine' => $tbl_storage_engine,
41 'table_info_num_rows' => $table_info_num_rows,
42 'tbl_collation' => $tbl_collation,
43 'showtable' => $showtable
46 /** @var TableStructureController $controller */
47 $controller = $container->get('TableStructureController', $dependency_definitions);
48 $controller->indexAction();