Translated using Weblate (Sorani)
[phpmyadmin.git] / db_triggers.php
blobeb3453ebf965eda5c5c4f9e39a6513feb1c7a2d6
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Triggers management.
6 * @package PhpMyAdmin
7 */
8 declare(strict_types=1);
10 use PhpMyAdmin\Controllers\Database\TriggersController;
11 use PhpMyAdmin\DatabaseInterface;
12 use PhpMyAdmin\Di\Container;
13 use PhpMyAdmin\Response;
14 use PhpMyAdmin\Url;
15 use PhpMyAdmin\Util;
16 use Symfony\Component\DependencyInjection\Definition;
18 if (! defined('ROOT_PATH')) {
19 define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
22 global $db, $table;
24 require_once ROOT_PATH . 'libraries/common.inc.php';
26 $container = Container::getDefaultContainer();
27 $container->set(Response::class, Response::getInstance());
29 /** @var Response $response */
30 $response = $container->get(Response::class);
32 /** @var DatabaseInterface $dbi */
33 $dbi = $container->get(DatabaseInterface::class);
35 $_PMA_RTE = 'TRI';
37 /** @var Definition $definition */
38 $definition = $containerBuilder->getDefinition(TriggersController::class);
39 $definition->replaceArgument('db', $container->get('db'));
41 /** @var TriggersController $controller */
42 $controller = $containerBuilder->get(TriggersController::class);
44 if (! $response->isAjax()) {
45 /**
46 * Displays the header and tabs
48 if (! empty($table) && in_array($table, $dbi->getTables($db))) {
49 include_once ROOT_PATH . 'libraries/tbl_common.inc.php';
50 } else {
51 $table = '';
52 include_once ROOT_PATH . 'libraries/db_common.inc.php';
54 list(
55 $tables,
56 $num_tables,
57 $total_num_tables,
58 $sub_part,
59 $is_show_stats,
60 $db_is_system_schema,
61 $tooltip_truename,
62 $tooltip_aliasname,
63 $pos
64 ) = Util::getDbInfo($db, isset($sub_part) ? $sub_part : '');
66 } else {
67 /**
68 * Since we did not include some libraries, we need
69 * to manually select the required database and
70 * create the missing $url_query variable
72 if (strlen($db) > 0) {
73 $dbi->selectDb($db);
74 if (! isset($url_query)) {
75 $url_query = Url::getCommon(
77 'db' => $db,
78 'table' => $table,
85 $controller->index();