%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 122.154.253.140  /  Your IP : 216.73.216.49 Web Server : Microsoft-IIS/7.5 System : Windows NT SERVER02 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.6.31 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/phpMyAdmin/templates/list/  | 
Upload File :  | 
<?php
/**
 * Display item of a list.
 *
 * $content - mandatory string - Content to display
 * $id - optional string - Contains the id of li tag
 * $class - optional string - Contains the class name(s) of li tag
 * $mysql_help_page - optional string - Related help page
 * $url - optional array: - href - optional string - Destination page or anchor
 *                        - target - optional string - Target of link
 *                        - class - optional string - Class of link
 *                        - title - optional string - Title of link
 */
?>
<li <?= !empty($id) ? ' id="' . $id . '"' : null ?>
    <?= !empty($class) ? ' class="' . $class . '"' : null ?>>
    <?php if (isset($url) && is_array($url) && array_filter($url)) : ?>
        <a<?= !empty($url['href']) ? ' href="' . $url['href'] . '"' : null ?>
        <?= !empty($url['target'])
            ? ' target="' . $url['target'] . '"'
            : null;
        ?>
        <?= !empty($url['id']) ? ' id="' . $url['id'] . '"' : null; ?>
        <?= !empty($url['class'])
            ? ' class="' . $url['class'] . '"'
            : null;
        ?>
        <?= !empty($url['title'])
            ? ' title="' . $url['title'] . '"'
            : null;
        ?>>
    <?php endif; ?>
        <?= $content ?>
    <?php if (!empty($url) && is_array($url)): ?>
        </a>
    <?php endif; ?>
    <?php if (!empty($mysql_help_page)): ?>
        <?= PMA\libraries\Util::showMySQLDocu($mysql_help_page) ?>
    <?php endif; ?>
</li>