404

[ Avaa Bypassed ]




Upload:

Command:

botdev@13.59.219.20: ~ $
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Interface for the transformations plugins
 *
 * @package PhpMyAdmin
 */
namespace PMA\libraries\plugins;

/**
 * Provides a common interface that will have to be implemented by all of the
 * transformations plugins.
 *
 * @package PhpMyAdmin
 */
interface TransformationsInterface
{
    /**
     * Gets the transformation description
     *
     * @return string
     */
    public static function getInfo();

    /**
     * Gets the specific MIME type
     *
     * @return string
     */
    public static function getMIMEType();

    /**
     * Gets the specific MIME subtype
     *
     * @return string
     */
    public static function getMIMESubtype();

    /**
     * Gets the transformation name of the specific plugin
     *
     * @return string
     */
    public static function getName();
}


Filemanager

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