mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-22 23:05:18 -04:00
Rename local_import module to server_add
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
||||
<link media="screen, projection" rel="stylesheet" type="text/css"
|
||||
href="<?= url::file("modules/server_add/css/server_add.css") ?>" />
|
||||
<?= 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"), $hidden) ?>
|
||||
<div id="gServerAddTree" >
|
||||
<?= $tree ?>
|
||||
</div>
|
||||
<span>
|
||||
<?= form::submit(array("id" => "gServerAddButton", "name" => "add", "disabled" => true, "class" => "submit"), t("Add")) ?>
|
||||
</span>
|
||||
<?= form::close() ?>
|
||||
<div id="gProgressBar" ></div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user