diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-04 15:46:10 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-03-04 15:46:10 +0000 |
| commit | f7d82ec52f533c620c94fe0327175747cc3d8877 (patch) | |
| tree | a4fdc5d31e700036083e11f31f17c8fca6cccd60 /modules/local_import/views | |
| parent | f16224ae828e43204cf334681941c27f179e09c3 (diff) | |
Rename local_import module to server_add
Diffstat (limited to 'modules/local_import/views')
4 files changed, 0 insertions, 71 deletions
diff --git a/modules/local_import/views/local_import_admin.html.php b/modules/local_import/views/local_import_admin.html.php deleted file mode 100644 index f26f57ad..00000000 --- a/modules/local_import/views/local_import_admin.html.php +++ /dev/null @@ -1,10 +0,0 @@ -<?php defined("SYSPATH") or die("No direct script access.") ?> -<div id="gLocalImportAdmin"> - <h2> - <?= t("Local Import Admininstration") ?> - </h2> - <div id="gAuthorizedPath"> - <?= $path_list ?> - </div> - <?= $add_form ?> -</div> diff --git a/modules/local_import/views/local_import_dir_list.html.php b/modules/local_import/views/local_import_dir_list.html.php deleted file mode 100644 index 7041fcc2..00000000 --- a/modules/local_import/views/local_import_dir_list.html.php +++ /dev/null @@ -1,13 +0,0 @@ -<?php defined("SYSPATH") or die("No direct script access.") ?> -<span><?= t("Authorized Paths") ?></span> -<ul id="gPathList"> - <? foreach ($paths as $id => $path): ?> - <li class="ui-icon-left"> - <span id="icon_<?= $id?>" class="gRemoveDir ui-icon ui-icon-trash"></span> - <?= $path ?> - </li> - <? endforeach ?> -</ul> -<div id="gNoImportPaths" <? if (!empty($paths)): ?>style="display:none"<? endif ?>> - <span class="gWarning"><?= t("No Authorized upload paths defined") ?></span> -</div> diff --git a/modules/local_import/views/local_import_tree.html.php b/modules/local_import/views/local_import_tree.html.php deleted file mode 100644 index b664c679..00000000 --- a/modules/local_import/views/local_import_tree.html.php +++ /dev/null @@ -1,22 +0,0 @@ -<?php defined("SYSPATH") or die("No direct script access.") ?> -<script type="text/javascript"> -$("#<?= $uid ?>").ready(function() { - $("#<?= $uid ?> span.ui-icon").click(function(event) { - open_close_branch(this, event); - }); - - $("#<?= $uid ?> :checkbox").click(function(event) { - checkbox_click(this, event); - }); -}); -</script> -<ul id="<?= $uid ?>" class="gCheckboxTree"> - <? foreach ($data as $file => $file_info): ?> - <li class="<?= empty($file_info["is_dir"]) ? "gFile" : "gDirectory gCollapsed ui-icon-left" ?>"> - <? if (!empty($file_info["is_dir"])): ?> - <span class="ui-icon ui-icon-plus" ref="<?= $file ?>"></span> - <? endif ?> - <label> <?= form::checkbox("checkbox", $file) . " $file" ?> </label> - </li> - <? endforeach ?> -</ul> diff --git a/modules/local_import/views/local_import_tree_dialog.html.php b/modules/local_import/views/local_import_tree_dialog.html.php deleted file mode 100644 index 520a2af0..00000000 --- a/modules/local_import/views/local_import_tree_dialog.html.php +++ /dev/null @@ -1,26 +0,0 @@ -<?php defined("SYSPATH") or die("No direct script access.") ?> -<link media="screen, projection" rel="stylesheet" type="text/css" - href="<?= url::file("modules/local_import/css/local_import.css") ?>" /> -<?= html::script("modules/local_import/js/local_import.js"); ?> - -<div id="gLocalImport"> - <h1 style="display: none;"><?= sprintf(t("Import Photos to '%s'"), $album_title) ?></h1> - - <p id="gDescription"><?= t("Photos will be imported 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="gLocalImportTree" > - <?= $tree ?> - </div> - <span> - <?= form::submit(array("id" => "gImportButton", "name" => "import", "disabled" => true, "class" => "submit"), t("Import")) ?> - </span> - <?= form::close() ?> - <div id="gProgressBar" ></div> -</div> |
