<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Interface for the import->upload plugins * * @package PhpMyAdmin */ namespace PMA\libraries\plugins; /** * Provides a common interface that will have to implemented by all of the * import->upload plugins. * * @package PhpMyAdmin */ 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); }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
auth | Folder | 0755 |
|
|
export | Folder | 0755 |
|
|
import | Folder | 0755 |
|
|
schema | Folder | 0755 |
|
|
transformations | Folder | 0755 |
|
|
AuthenticationPlugin.php | File | 4.1 KB | 0644 |
|
ExportPlugin.php | File | 10.51 KB | 0644 |
|
IOTransformationsPlugin.php | File | 2.31 KB | 0644 |
|
ImportPlugin.php | File | 1.68 KB | 0644 |
|
SchemaPlugin.php | File | 2.3 KB | 0644 |
|
TransformationsInterface.php | File | 862 B | 0644 |
|
TransformationsPlugin.php | File | 1.67 KB | 0644 |
|
UploadInterface.php | File | 627 B | 0644 |
|