summaryrefslogtreecommitdiff
path: root/modules/tag/controllers
diff options
context:
space:
mode:
authorTim Almdal <tnalmdal@shaw.ca>2008-11-25 22:38:11 +0000
committerTim Almdal <tnalmdal@shaw.ca>2008-11-25 22:38:11 +0000
commit1ea0382f5346c2fb1a2388a8a53adfe40078dc10 (patch)
treeda5788af9a86a8b559eca22bcec2ae63a858a9ea /modules/tag/controllers
parente9e589e5ebb54d016f1e52d4ba776970456e39b6 (diff)
Moving right along on tags. Now the threshold for which tags can be changed. The default is to show all the tags (i.e. count >= the minimum frequency) by clicking on the "See Less" link, the tag cloud will not show the minimum frequency, so the number of tags shown is smaller.
The "See More" link works the opposite way.
Diffstat (limited to 'modules/tag/controllers')
-rw-r--r--modules/tag/controllers/tag.php76
1 files changed, 76 insertions, 0 deletions
diff --git a/modules/tag/controllers/tag.php b/modules/tag/controllers/tag.php
new file mode 100644
index 00000000..e6bdbfe4
--- /dev/null
+++ b/modules/tag/controllers/tag.php
@@ -0,0 +1,76 @@
+<?php defined("SYSPATH") or die("No direct script access.");
+/**
+ * Gallery - a web based photo album viewer and editor
+ * Copyright (C) 2000-2008 Bharat Mediratta
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or (at
+ * your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
+ */
+class Tag_Controller extends REST_Controller {
+ protected $resource_type = "tag";
+
+ /**
+ * @see Rest_Controller::_index()
+ */
+ public function _index() {
+ $filter = valid::digit($_GET["filter"]) ? $_GET["filter"] : null;
+ $filter = ($filter <= 0) ? 1 :
+ ($filter >= tag::$NUMBER_OF_BUCKETS ? tag::$NUMBER_OF_BUCKETS - 1 : $filter);
+ print tag_block::sidebar_blocks(null, $filter);
+ }
+
+ /**
+ * @see Rest_Controller::_form_add($parameters)
+ */
+ public function _form_add($parameters) {
+ throw new Exception("@todo Comment_Controller::_form NOT IMPLEMENTED");
+ }
+
+ /**
+ * @see Rest_Controller::_form_edit($resource)
+ */
+ public function _form_edit($tag) {
+ throw new Exception("@todo Comment_Controller::_form NOT IMPLEMENTED");
+ }
+
+ public function _show($tag) {
+ throw new Exception("@todo Tag_Controller::_show NOT IMPLEMENTED");
+ }
+
+ public function _create($tag) {
+ // @todo Productionize this code
+ // 1) Add security checks
+ throw new Exception("@todo Tag_Controller::_create NOT IMPLEMENTED");
+ }
+
+ public function _delete($tag) {
+ // @todo Production this code
+ // 1) Add security checks
+ throw new Exception("@todo Tag_Controller::_delete NOT IMPLEMENTED");
+ }
+
+ public function _update($tag) {
+ // @todo Productionize this
+ // 1) Figure out how to do the right validation here. Validate the form input and apply it to
+ // the model as appropriate.
+ // 2) Figure out how to dispatch according to the needs of the client. Ajax requests from
+ // jeditable will want the changed field back, and possibly the whole item in json.
+ //
+ // For now let's establish a simple protocol where the client passes in a __return parameter
+ // that specifies which field it wants back from the item. Later on we can expand that to
+ // include a data format, etc.
+
+ throw new Exception("@todo Tag_Controller::_update NOT IMPLEMENTED");
+ }
+}