Update website
This commit is contained in:
parent
4413528994
commit
1d90fbf296
6865 changed files with 1091082 additions and 0 deletions
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\Controllers\Sql;
|
||||
|
||||
use PhpMyAdmin\CheckUserPrivileges;
|
||||
use PhpMyAdmin\Controllers\AbstractController;
|
||||
use PhpMyAdmin\ResponseRenderer;
|
||||
use PhpMyAdmin\Template;
|
||||
use PhpMyAdmin\Utils\ForeignKey;
|
||||
|
||||
final class DefaultForeignKeyCheckValueController extends AbstractController
|
||||
{
|
||||
/** @var CheckUserPrivileges */
|
||||
private $checkUserPrivileges;
|
||||
|
||||
public function __construct(
|
||||
ResponseRenderer $response,
|
||||
Template $template,
|
||||
CheckUserPrivileges $checkUserPrivileges
|
||||
) {
|
||||
parent::__construct($response, $template);
|
||||
$this->checkUserPrivileges = $checkUserPrivileges;
|
||||
}
|
||||
|
||||
public function __invoke(): void
|
||||
{
|
||||
$this->checkUserPrivileges->getPrivileges();
|
||||
$this->response->addJSON('default_fk_check_value', ForeignKey::isCheckEnabled());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue