mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
the upload is paused. If the dialog is closed and the task is not complete then a warning message is displayed on the album.
25 lines
994 B
PHP
25 lines
994 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" => "gServerPauseButton", "name" => "add", "disabled" => true, "class" => "submit", "style" => "display:none"), t("Pause")) ?>
|
|
<?= form::submit(array("id" => "gServerAddButton", "name" => "add", "disabled" => true, "class" => "submit"), t("Add")) ?>
|
|
</span>
|
|
<?= form::close() ?>
|
|
<div class="gProgressBar" style="visibility: hidden" ></div>
|
|
</div>
|