summaryrefslogtreecommitdiff
path: root/modules/tag/views
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2009-05-21 01:31:29 +0000
committerTim Almdal <tnalmdal@shaw.ca>2009-05-21 01:31:29 +0000
commita9e3692027dc767b340242ed18fe7184cbfd883d (patch)
tree125e9d3cdb28c5acdd34e1bc15fe80df030bf8e7 /modules/tag/views
parentf24c8f66ea9673d812c882dd7db6fbe49bd01dfb (diff)
1) This provides the editting functionality for albums and photos in the
organize feature. 2) Remove the tag functionality at this point 3) Added a callback to handle validating conflicting names (only used by organize at this point. 4) Closes #231
Diffstat (limited to 'modules/tag/views')
-rw-r--r--modules/tag/views/tag_organize.html.php25
1 files changed, 0 insertions, 25 deletions
diff --git a/modules/tag/views/tag_organize.html.php b/modules/tag/views/tag_organize.html.php
deleted file mode 100644
index bb46b861..00000000
--- a/modules/tag/views/tag_organize.html.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php defined("SYSPATH") or die("No direct script access.") ?>
-<span id="gTagCount"><?= t2("There is one tag", "There are %count tags", $tag_count) ?></span>
-<span id="gAddTag">
- <a id="gAddTagButton" href="#" class="gButtonLink"><?= t("Click to Add Tag") ?></a>
-</span>
-<? foreach ($tags as $firstLetter => $tagGroup): ?>
-<div class="gTagGroup">
- <strong><?= $firstLetter ?></strong><span class="understate">&nbsp;(<?= $tagGroup["count"] ?>)</span>
- <ul>
- <? foreach ($tagGroup["taglist"] as $taglist): ?>
- <li>
- <span id="gTag-<?= $taglist['id'] ?>" class="gEditable tag-name"><?= $taglist["tag"] ?></span>
- <span class="understate">(<?= $taglist["count"] ?>)</span>
-
- <!-- a href="<?= url::site("admin/tags/form_delete/{$taglist['id']}") ?>"
- class="gDialogLink delete-link gButtonLink" -->
- <a href="#"
- class="gDialogLink delete-link gButtonLink">
- <span class="ui-icon ui-icon-trash"><?= t("Delete tag") ?></span>
- </a>
- </li>
- <? endforeach ?>
- </ul>
-</div>
-<? endforeach ?> \ No newline at end of file