2009-03-04 15:46:10 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2009-04-09 19:32:12 +00:00
|
|
|
<script>
|
|
|
|
|
var FATAL_ERROR = "<?= t("Fatal Error") ?>";
|
2009-04-23 21:42:34 +00:00
|
|
|
var FILE_IMPORT_WARNING = "<?= t("Add from server warning") ?>";
|
2009-04-09 19:32:12 +00:00
|
|
|
</script>
|
2009-03-04 15:46:10 +00:00
|
|
|
<?= html::script("modules/server_add/js/server_add.js"); ?>
|
|
|
|
|
<div id="gServerAdd">
|
2009-05-31 01:02:51 -07:00
|
|
|
<h1 style="display: none;"><?= t("Add Photos to '%title'", array("title" => p::clean($album_title))) ?></h1>
|
2009-03-04 15:46:10 +00:00
|
|
|
|
|
|
|
|
<p id="gDescription"><?= t("Photos will be added to album:") ?></p>
|
|
|
|
|
<ul class="gBreadcrumbs">
|
|
|
|
|
<? foreach ($parents as $parent): ?>
|
2009-05-31 01:02:51 -07:00
|
|
|
<li><?= p::clean($parent->title) ?></li>
|
2009-03-04 15:46:10 +00:00
|
|
|
<? endforeach ?>
|
2009-05-31 01:02:51 -07:00
|
|
|
<li class="active"><?= p::clean($album_title) ?></li>
|
2009-03-04 15:46:10 +00:00
|
|
|
</ul>
|
|
|
|
|
|
2009-03-16 09:11:30 +00:00
|
|
|
<?= form::open($action, array("method" => "post")) ?>
|
2009-03-04 15:46:10 +00:00
|
|
|
<div id="gServerAddTree" >
|
|
|
|
|
<?= $tree ?>
|
|
|
|
|
</div>
|
|
|
|
|
<span>
|
2009-03-24 17:41:20 +00:00
|
|
|
<?= form::submit(array("id" => "gServerPauseButton", "name" => "add", "disabled" => true, "class" => "submit", "style" => "display:none"), t("Pause")) ?>
|
2009-03-04 15:46:10 +00:00
|
|
|
<?= form::submit(array("id" => "gServerAddButton", "name" => "add", "disabled" => true, "class" => "submit"), t("Add")) ?>
|
|
|
|
|
</span>
|
|
|
|
|
<?= form::close() ?>
|
2009-03-17 05:20:37 +00:00
|
|
|
<div class="gProgressBar" style="visibility: hidden" ></div>
|
2009-03-04 15:46:10 +00:00
|
|
|
</div>
|