Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin.bak/libraries/classes/Controllers/Preferences/ |
Upload File : |
<?php declare(strict_types=1); namespace PhpMyAdmin\Controllers\Preferences; use PhpMyAdmin\Config\ConfigFile; use PhpMyAdmin\Config\Forms\User\FeaturesForm; use PhpMyAdmin\Controllers\AbstractController; use PhpMyAdmin\Core; use PhpMyAdmin\Relation; use PhpMyAdmin\Response; use PhpMyAdmin\Template; use PhpMyAdmin\TwoFactor; use PhpMyAdmin\Url; use PhpMyAdmin\UserPreferences; use function define; use function ltrim; class FeaturesController extends AbstractController { /** @var UserPreferences */ private $userPreferences; /** @var Relation */ private $relation; /** * @param Response $response */ public function __construct( $response, Template $template, UserPreferences $userPreferences, Relation $relation ) { parent::__construct($response, $template); $this->userPreferences = $userPreferences; $this->relation = $relation; } public function index(): void { global $cfg, $cf, $error, $tabHash, $hash; global $server, $PMA_Config, $route; $cf = new ConfigFile($PMA_Config->baseSettings); $this->userPreferences->pageInit($cf); $formDisplay = new FeaturesForm($cf, 1); if (isset($_POST['revert'])) { // revert erroneous fields to their default values $formDisplay->fixErrors(); Core::sendHeaderLocation('./index.php?route=/preferences/features'); return; } $error = null; if ($formDisplay->process(false) && ! $formDisplay->hasErrors()) { // Load 2FA settings $twoFactor = new TwoFactor($cfg['Server']['user']); // save settings $result = $this->userPreferences->save($cf->getConfigArray()); // save back the 2FA setting only $twoFactor->save(); if ($result === true) { // reload config $PMA_Config->loadUserPreferences(); $tabHash = $_POST['tab_hash'] ?? null; $hash = ltrim($tabHash, '#'); $this->userPreferences->redirect( 'index.php?route=/preferences/features', null, $hash ); return; } $error = $result; } $this->addScriptFiles(['config.js']); $cfgRelation = $this->relation->getRelationsParam(); $this->render('preferences/header', [ 'route' => $route, 'is_saved' => ! empty($_GET['saved']), 'has_config_storage' => $cfgRelation['userconfigwork'], ]); if ($formDisplay->hasErrors()) { $formErrors = $formDisplay->displayErrors(); } $this->render('preferences/forms/main', [ 'error' => $error ? $error->getDisplay() : '', 'has_errors' => $formDisplay->hasErrors(), 'errors' => $formErrors ?? null, 'form' => $formDisplay->getDisplay( true, true, true, Url::getFromRoute('/preferences/features'), ['server' => $server] ), ]); if ($this->response->isAjax()) { $this->response->addJSON('disableNaviSettings', true); } else { define('PMA_DISABLE_NAVI_SETTINGS', true); } } }