blob: 33047fb340b490c35a5e679c3e4f4aeeacf5b89c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<script type="text/javascript">
</script>
<ul id="<?= $tree_id ?>" class="gCheckboxTree">
<? foreach ($data as $file => $file_info): ?>
<li class="<?= empty($file_info["is_dir"]) ? "gFile" : "gDirectory gCollapsed ui-icon-left" ?>">
<? if (!empty($file_info["is_dir"])): ?>
<span class="ui-icon ui-icon-plus"></span>
<? endif ?>
<label> <?= form::checkbox("checkbox[]", p::clean($file_info["path"]), $checked) . " " . p::clean($file) ?> </label>
<div class="gServerAddChildren" style="display: none"></div>
</li>
<? endforeach ?>
</ul>
|