Files
gallery3/modules/gallery/views/item_edit.html.php
Tim Almdal 078c77a62b Add tag autocomplete to the album and photo edit pop up dialogs.
This required putting a wrapper view around the forms and passing
this view as the parameter to the item_edit_form event.  The view
contains a $script variable that the modules can add script to be
included in the form html when rendered as part of the ajax response.
2009-07-24 14:18:15 -07:00

9 lines
205 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<? if (!empty($script)): ?>
<script>
<?= implode("\n", $script) ?>
</script>
<? endif ?>
<div id="gEditFormContainer">
<?= $form ?>
</div>