Update website
This commit is contained in:
parent
bb4b0f9be8
commit
011b183e28
4263 changed files with 3014 additions and 720369 deletions
|
@ -1,32 +0,0 @@
|
|||
<?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