mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
can't edit, but we are getting closer :-). This change sets up a framework for modules to contribute edit panels to the organize drawer. Currently implemented General (albums and photos), Sort Order (albums only) and Manage Tags
16 lines
516 B
PHP
16 lines
516 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<ul>
|
|
<li>
|
|
<label for="title"><?= t("Title") ?></label>
|
|
<div id="title" type="text" class="textbox" ><?= $item->title ?></div>
|
|
</li>
|
|
<li>
|
|
<label for="description"><?= t("Description") ?></label>
|
|
<div id="description" class="textarea" ><?= $item->description ?></div>
|
|
</li>
|
|
<li>
|
|
<label for="dirname"><?= t("Directory Name") ?></label>
|
|
<div id="dirname" type="text" class="textbox" ><?= $item->name ?></div>
|
|
</li>
|
|
</ul>
|