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 transformations plugins */ declare(strict_types=1); namespace PhpMyAdmin\Plugins; use PhpMyAdmin\FieldMetadata; /** * Provides a common interface that will have to * be implemented by all of the transformations plugins. */ abstract class TransformationsPlugin implements TransformationsInterface { /** * Does the actual work of each specific transformations plugin. * * @param array $options transformation options */ public function applyTransformationNoWrap(array $options = []): bool { return false; } /** * Does the actual work of each specific transformations plugin. * * @param string $buffer text to be transformed * @param array $options transformation options * @param FieldMetadata|null $meta meta information * * @return string the transformed text */ abstract public function applyTransformation( $buffer, array $options = [], ?FieldMetadata $meta = null ); /** * Returns passed options or default values if they were not set * * @param string[] $options List of passed options * @param string[] $defaults List of default values * * @return array List of options possibly filled in by defaults. */ public function getOptions(array $options, array $defaults) { $result = []; foreach ($defaults as $key => $value) { if (isset($options[$key]) && $options[$key] !== '') { $result[$key] = $options[$key]; } else { $result[$key] = $value; } } return $result; } }