Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
templates /
list /
Delete
Unzip
Name
Size
Permission
Date
Action
item.phtml
1.63
KB
-rw-r--r--
2017-01-23 20:20
unordered.phtml
921
B
-rw-r--r--
2017-01-23 20:20
Save
Rename
<?php /** * Display unordered list. * * $class - optional string - Contains the class name(s) of ul tag * $id - optional string - Contains the id of ul tag * $item - mandatory string|array - If string, this is the content * - Else, see templates/list/item.phtml * $content - mandatory string - Content to display if $item is empty */ ?> <ul<?= !empty($class) ? ' class="' . $class . '"' : null ?> <?= !empty($id) ? ' id="' . $id . '"' : null ?>> <?php if (!empty($items)): ?> <?php foreach ($items as $item): ?> <?php if (!is_array($item)): ?> <?php $item = array('content' => $item) ?> <?php endif; ?> <?= PMA\libraries\Template::get('list/item') ->render($item) ?> <?php endforeach; ?> <?php elseif (!empty($content)): ?> <?= $content ?> <?php endif; ?> </ul>