These settings are no longer required as they are guaranteed through other coding standard tools. Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
31 lines
616 B
PHP
31 lines
616 B
PHP
<?php
|
|
/**
|
|
* Renders data dictionary
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
use PhpMyAdmin\Controllers\Database\DataDictionaryController;
|
|
use PhpMyAdmin\Response;
|
|
use PhpMyAdmin\Util;
|
|
|
|
if (! defined('PHPMYADMIN')) {
|
|
exit;
|
|
}
|
|
|
|
global $containerBuilder;
|
|
|
|
Util::checkParameters(['db']);
|
|
|
|
/** @var Response $response */
|
|
$response = $containerBuilder->get(Response::class);
|
|
|
|
/** @var DataDictionaryController $controller */
|
|
$controller = $containerBuilder->get(DataDictionaryController::class);
|
|
|
|
$header = $response->getHeader();
|
|
$header->enablePrintView();
|
|
|
|
$response->addHTML($controller->index());
|