1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- declare(strict_types=1);
- namespace PhpMyAdmin\Controllers\Sql;
- use PhpMyAdmin\CheckUserPrivileges;
- use PhpMyAdmin\Controllers\AbstractController;
- use PhpMyAdmin\ResponseRenderer;
- use PhpMyAdmin\Sql;
- use PhpMyAdmin\Template;
- use function __;
- use function strval;
- final class EnumValuesController extends AbstractController
- {
- /** @var Sql */
- private $sql;
- /** @var CheckUserPrivileges */
- private $checkUserPrivileges;
- public function __construct(
- ResponseRenderer $response,
- Template $template,
- Sql $sql,
- CheckUserPrivileges $checkUserPrivileges
- ) {
- parent::__construct($response, $template);
- $this->sql = $sql;
- $this->checkUserPrivileges = $checkUserPrivileges;
- }
- /**
- * Get possible values for enum fields during grid edit.
- */
- public function __invoke(): void
- {
- global $db, $table;
- $this->checkUserPrivileges->getPrivileges();
- $column = $_POST['column'];
- $currValue = $_POST['curr_value'];
- $values = $this->sql->getValuesForColumn($db, $table, $column);
- if ($values === null) {
- $this->response->addJSON('message', __('Error in processing request'));
- $this->response->setRequestStatus(false);
- return;
- }
- $dropdown = $this->template->render('sql/enum_column_dropdown', [
- 'values' => $values,
- 'selected_values' => [strval($currValue)],
- ]);
- $this->response->addJSON('dropdown', $dropdown);
- }
- }
|