/usr/share/phpmyadmin/libraries/classes/Plugins
NameSizeModeActions
Auth/-0755rm
Export/-0755rm
Import/-0755rm
Schema/-0755rm
Transformations/-0755rm
TwoFactor/-0755rm
AuthenticationPlugin.php101070644editdlrm
ExportPlugin.php115610644editdlrm
ImportPlugin.php19590644editdlrm
IOTransformationsPlugin.php23410644editdlrm
SchemaPlugin.php22250644editdlrm
TransformationsInterface.php7910644editdlrm
TransformationsPlugin.php16800644editdlrm
TwoFactorPlugin.php38580644editdlrm
UploadInterface.php5570644editdlrm
Edit: /usr/share/phpmyadmin/libraries/classes/Plugins/UploadInterface.php (557B)
upload plugins */ declare(strict_types=1); namespace PhpMyAdmin\Plugins; /** * Provides a common interface that will have to implemented by all of the * import->upload plugins. */ interface UploadInterface { /** * Gets the specific upload ID Key * * @return string ID Key */ public static function getIdKey(); /** * Returns upload status. * * @param string $id upload id * * @return array|null */ public static function getUploadStatus($id); }