You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
862 B
32 lines
862 B
<?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()); |
|
} |
|
}
|
|
|