C:\xampp2_not used\phpMyAdmin\libraries\classes\Plugins\UploadInterface.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Interface for the import->upload plugins
 *
 * @package PhpMyAdmin
 */
namespace PhpMyAdmin\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);
}
x

Windows NT KPTV 6.2 build 9200 (Windows Server 2012 Datacenter Edition) i586