1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- use PhpMyAdmin\Controllers\Table\TableRelationController;
- use PhpMyAdmin\Di\Container;
- use PhpMyAdmin\Relation;
- use PhpMyAdmin\Response;
- use PhpMyAdmin\Table;
- use PhpMyAdmin\Util;
- require_once 'libraries/common.inc.php';
- $container = Container::getDefaultContainer();
- $container->factory('PhpMyAdmin\Controllers\Table\TableRelationController');
- $container->alias(
- 'TableRelationController',
- 'PhpMyAdmin\Controllers\Table\TableRelationController'
- );
- $container->set('PhpMyAdmin\Response', Response::getInstance());
- $container->alias('response', 'PhpMyAdmin\Response');
- $db = $container->get('db');
- $table = $container->get('table');
- $dbi = $container->get('dbi');
- $options_array = array(
- 'CASCADE' => 'CASCADE',
- 'SET_NULL' => 'SET NULL',
- 'NO_ACTION' => 'NO ACTION',
- 'RESTRICT' => 'RESTRICT',
- );
- $relation = new Relation();
- $cfgRelation = $relation->getRelationsParam();
- $tbl_storage_engine = mb_strtoupper(
- $dbi->getTable($db, $table)->getStatusInfo('Engine')
- );
- $upd_query = new Table($table, $db, $dbi);
- $dependency_definitions = array(
- "options_array" => $options_array,
- "cfgRelation" => $cfgRelation,
- "tbl_storage_engine" => $tbl_storage_engine,
- "upd_query" => $upd_query
- );
- if ($cfgRelation['relwork']) {
- $dependency_definitions['existrel'] = $relation->getForeigners(
- $db, $table, '', 'internal'
- );
- }
- if (Util::isForeignKeySupported($tbl_storage_engine)) {
- $dependency_definitions['existrel_foreign'] = $relation->getForeigners(
- $db, $table, '', 'foreign'
- );
- }
- $controller = $container->get('TableRelationController', $dependency_definitions);
- $controller->indexAction();
|