mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-21 11:59:13 -04:00
- Pass the CSS selector of the active image in as an arg to site_menu
so that quick operations know what they're operating on.
- Change the ids from g-{photo,movie}-id to the generic g-item-id
- Initialize ajax handlers for site menu on the photo and movie page
- Drop the movie context menu, it's now in the site menu
18 lines
467 B
PHP
18 lines
467 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<div id="g-item">
|
|
<?= $theme->photo_top() ?>
|
|
|
|
<?= $theme->paginator() ?>
|
|
|
|
<div id="g-movie" class="ui-helper-clearfix">
|
|
<?= $item->movie_img(array("class" => "g-movie", "id" => "g-item-id-{$item->id}")) ?>
|
|
</div>
|
|
|
|
<div id="g-info">
|
|
<h1><?= html::purify($item->title) ?></h1>
|
|
<div><?= nl2br(html::purify($item->description)) ?></div>
|
|
</div>
|
|
|
|
<?= $theme->photo_bottom() ?>
|
|
</div>
|