Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
libraries /
classes /
Plugins /
Delete
Unzip
Name
Size
Permission
Date
Action
Auth
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
Export
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
Import
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
Schema
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
Transformations
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
TwoFactor
[ DIR ]
drwxr-xr-x
2025-06-07 11:58
AuthenticationPlugin.php
9.66
KB
-rw-r--r--
2023-02-07 21:35
ExportPlugin.php
10.96
KB
-rw-r--r--
2023-02-07 21:35
IOTransformationsPlugin.php
2.25
KB
-rw-r--r--
2023-02-07 21:35
ImportPlugin.php
2.12
KB
-rw-r--r--
2023-02-07 21:35
Plugin.php
350
B
-rw-r--r--
2023-02-07 21:35
SchemaPlugin.php
2.46
KB
-rw-r--r--
2023-02-07 21:35
TransformationsInterface.php
791
B
-rw-r--r--
2023-02-07 21:35
TransformationsPlugin.php
1.68
KB
-rw-r--r--
2023-02-07 21:35
TwoFactorPlugin.php
3.69
KB
-rw-r--r--
2023-02-07 21:35
UploadInterface.php
557
B
-rw-r--r--
2023-02-07 21:35
Save
Rename
<?php /** * Abstract class for the schema export plugins */ declare(strict_types=1); namespace PhpMyAdmin\Plugins; use PhpMyAdmin\Properties\Options\Groups\OptionsPropertyMainGroup; use PhpMyAdmin\Properties\Options\Items\BoolPropertyItem; use PhpMyAdmin\Properties\Plugins\PluginPropertyItem; use PhpMyAdmin\Properties\Plugins\SchemaPluginProperties; use function __; /** * Provides a common interface that will have to be implemented by all of the * schema export plugins. Some of the plugins will also implement other public * methods, but those are not declared here, because they are not implemented * by all export plugins. */ abstract class SchemaPlugin implements Plugin { /** * Object containing the specific schema export plugin type properties. * * @var SchemaPluginProperties */ protected $properties; final public function __construct() { $this->init(); $this->properties = $this->setProperties(); } /** * Plugin specific initializations. */ protected function init(): void { } /** * Gets the export specific format plugin properties * * @return SchemaPluginProperties */ public function getProperties(): PluginPropertyItem { return $this->properties; } /** * Sets the export plugins properties and is implemented by each schema export plugin. */ abstract protected function setProperties(): SchemaPluginProperties; /** * Exports the schema into the specified format. * * @param string $db database name */ abstract public function exportSchema($db): bool; /** * Adds export options common to all plugins. * * @param OptionsPropertyMainGroup $propertyGroup property group */ protected function addCommonOptions(OptionsPropertyMainGroup $propertyGroup): void { $leaf = new BoolPropertyItem('show_color', __('Show color')); $propertyGroup->addProperty($leaf); $leaf = new BoolPropertyItem('show_keys', __('Only show keys')); $propertyGroup->addProperty($leaf); } /** * Returns the array of paper sizes * * @return array array of paper sizes */ protected function getPaperSizeArray() { $ret = []; foreach ($GLOBALS['cfg']['PDFPageSizes'] as $val) { $ret[$val] = $val; } return $ret; } public static function isAvailable(): bool { return true; } }