📁
SKYSHELL MANAGER
PHP v8.2.31
Create
Create
Path:
root
/
home
/
thevaxnx
/
nativize.com
/
staging
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
wp-links-opml.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: SqlForm.php
<?php /** * User preferences form */ declare(strict_types=1); namespace PhpMyAdmin\Config\Forms\User; use PhpMyAdmin\Config\Forms\BaseForm; use function __; class SqlForm extends BaseForm { /** * @return array */ public static function getForms() { return [ 'Sql_queries' => [ 'ShowSQL', 'Confirm', 'QueryHistoryMax', 'IgnoreMultiSubmitErrors', 'MaxCharactersInDisplayedSQL', 'RetainQueryBox', 'CodemirrorEnable', 'LintEnable', 'EnableAutocompleteForTablesAndColumns', 'DefaultForeignKeyChecks', ], 'Sql_box' => [ 'SQLQuery/Edit', 'SQLQuery/Explain', 'SQLQuery/ShowAsPHP', 'SQLQuery/Refresh', ], ]; } /** * @return string */ public static function getName() { return __('SQL queries'); } }
Save