Upgraded phpmyadmin to 4.0.4 (All Languages) - No modifications yet
[openemr.git] / phpmyadmin / libraries / plugins / UploadInterface.int.php
blobab660d610d203e6784cff2baea7cbfb3b2dc5749
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Interface for the import->upload plugins
6 * @package PhpMyAdmin
7 */
8 if (! defined('PHPMYADMIN')) {
9 exit;
12 /**
13 * Provides a common interface that will have to implemented by all of the
14 * import->upload plugins.
16 * @package PhpMyAdmin
18 interface UploadInterface
20 /**
21 * Gets the specific upload ID Key
23 * @return string ID Key
25 public static function getIdKey();
27 /**
28 * Returns upload status.
30 * @param string $id upload id
32 * @return array|null
34 public static function getUploadStatus($id);