mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-19 19:09:13 -04:00
23 lines
798 B
PHP
23 lines
798 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<script type="text/javascript">
|
|
$("#<?= $tree_id ?>").ready(function() {
|
|
$("#<?= $tree_id ?> span.ui-icon").click(function(event) {
|
|
open_close_branch(this, event);
|
|
});
|
|
|
|
$("#<?= $tree_id ?> :checkbox").click(function(event) {
|
|
checkbox_click(this, event);
|
|
});
|
|
});
|
|
</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"])) . " " . p::clean($file) ?> </label>
|
|
</li>
|
|
<? endforeach ?>
|
|
</ul>
|