summaryrefslogtreecommitdiffstats
path: root/phpfspot.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpfspot.class.php')
-rw-r--r--phpfspot.class.php39
1 files changed, 39 insertions, 0 deletions
diff --git a/phpfspot.class.php b/phpfspot.class.php
index 7e7d4dd..9c1126d 100644
--- a/phpfspot.class.php
+++ b/phpfspot.class.php
@@ -690,6 +690,45 @@ class PHPFSPOT {
} // resetTags()
/**
+ * returns the value for the autocomplet tag-search
+ */
+ public function get_xml_tag_list()
+ {
+ if(!isset($_GET['search']) || !is_string($_GET['search']))
+ $_GET['search'] = '';
+
+ if(!isset($_GET['length']) || !is_numeric($_GET['length']))
+ $_GET['length'] = 5;
+
+
+ /* retrive tags from database */
+ $this->get_tags();
+
+ $matched_tags = Array();
+
+ foreach($this->avail_tags as $tag)
+ {
+ if(!empty($_GET['search']) &&
+ preg_match("/". $_GET['search'] ."/i", $this->tags[$tag]) &&
+ count($matched_tags) < $_GET['length']) {
+
+ array_push($matched_tags, $this->tags[$tag] .",". $this->tags[$tag]);
+ }
+
+ /* if we have collected enough items, break out */
+ if(count($matched_tags) >= $_GET['length'])
+ break;
+ }
+
+ if(empty($matched_tags))
+ return;
+
+ return implode('|', $matched_tags);
+
+ } // get_xml_tag_list()
+
+
+ /**
* reset single photo
*
* if a specific photo was requested (external link)