blob: 62c551325ed55d79bf465ccf82f5f77d8f248c12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<!-- ?= html::script("modules/organize/js/organize.js") ? -->
<script>
var item_id = <?= $item->id ?>;
var csrf = "<?= $csrf ?>";
$("#doc3").ready(function() {
organize_dialog_init();
$("#gMicroThumbContainer").scroll(function() {
get_more_data();
});
});
</script>
<fieldset style="display: none">
<legend><?= t("Organize %name", array("name" => $item->title)) ?></legend>
</fieldset>
<div id="doc3" class="yui-t1">
<div id="hd" ref="<?= url::site("organize/header/__ITEM_ID__") ?>">
<h2 id="gOrganizeAlbumTitle"><?= $item->title ?></h2>
<p id="gOrganizeAlbumDescription"><?= $item->description ?></p>
</div>
<div id="bd" role="main">
<div id="yui-main">
<div class="yui-b">
<div class="yui-ge">
<div id="gMicroThumbContainer" class="yui-u first"
ref="<?= url::site("organize/content/__ITEM_ID__?width=__WIDTH__&height=__HEIGHT__&offset=__OFFSET__") ?>">
<ul id="gMicroThumbGrid">
</ul>
</div>
<div id="gOrganizeEditContainer" class="yui-u">
<?= $edit_form ?>
</div>
</div>
</div>
</div>
<div id="gOrganizeTreeContainer" class="yui-b">
<?= $album_tree ?>
</div>
</div>
<div id="ft">
<div class="gProgressBar" style="visibility: hidden"></div>
</div>
</div>
|