Files
gallery3/modules/server_add/views/server_add_tree_dialog.html.php
Bharat Mediratta 0f5ccc9aa3 Switch from using SimpleUploader to using swfUpload as our flash based
uploader.  This is modeled on
http://codex.gallery2.org/Gallery3:Upload_UX but is not yet complete.

Notes:
* Changed #gProgressBar to .gProgressBar to support multiple progress
  bars on the same page
* Added a bunch of CSS to the "needs a home" section in
  themes/default/css/screen.css
2009-03-17 05:20:37 +00:00

24 lines
836 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<?= html::script("modules/server_add/js/server_add.js"); ?>
<div id="gServerAdd">
<h1 style="display: none;"><?= sprintf(t("Add Photos to '%s'"), $album_title) ?></h1>
<p id="gDescription"><?= t("Photos will be added to album:") ?></p>
<ul class="gBreadcrumbs">
<? foreach ($parents as $parent): ?>
<li><?= $parent->title ?></li>
<? endforeach ?>
<li class="active"><?= $album_title ?></li>
</ul>
<?= form::open($action, array("method" => "post")) ?>
<div id="gServerAddTree" >
<?= $tree ?>
</div>
<span>
<?= form::submit(array("id" => "gServerAddButton", "name" => "add", "disabled" => true, "class" => "submit"), t("Add")) ?>
</span>
<?= form::close() ?>
<div class="gProgressBar" style="visibility: hidden" ></div>
</div>