if(!isset($_SESSION['tag_condition']))
$_SESSION['tag_condition'] = 'or';
+ if(!isset($_SESSION['searchfor']))
+ $_SESSION['searchfor'] = '';
+
} // __construct()
public function __destruct()
public function show()
{
+ $this->tmpl->assign('searchfor', $_SESSION['searchfor']);
$this->tmpl->assign('page_title', $this->cfg->page_title);
$this->tmpl->assign('current_condition', $_SESSION['tag_condition']);
$this->tmpl->show("index.tpl");
public function showPhotoIndex()
{
- $photos = $this->getAllTagPhotos();
+ if($_SESSION['searchfor'] == '')
+ $photos = $this->getAllTagPhotos();
+ else
+ $photos = $this->getSearchResult($_SESSION['searchfor']);
+
$count = count($photos);
$rows = 0;
} // setTagCondition()
+ public function startSearch($searchfor)
+ {
+ $_SESSION['searchfor'] = $searchfor;
+
+ } // showSearchResult()
+
+ public function getSearchResult($for)
+ {
+ $tagged_photos = Array();
+
+ $result = $this->db->db_query("
+ SELECT DISTINCT photo_id
+ FROM photo_tags pt
+ INNER JOIN photos p
+ ON p.id=pt.photo_id
+ INNER JOIN tags t
+ ON pt.tag_id=t.id
+ WHERE t.name LIKE '%". $for ."%'
+ ORDER BY p.time ASC
+ ");
+
+ while($row = $this->db->db_fetch_object($result)) {
+ array_push($tagged_photos, $row['photo_id']);
+ }
+
+ return $tagged_photos;
+
+ } // getSearchResult()
+
}
?>
}
}
-function startsearch()
+function startSearch(searchfor)
{
- searchfor = document.getElementsByName('searchfor')[0].value;
HTML_AJAX.grab(encodeURI('rpc.php?action=search&for=' + searchfor));
+
+/ Tags('reset', 0);
+
+ refreshAvailableTags();
+ refreshSelectedTags();
+ showPhotoIndex();
+}
+
+function clearSearch()
+{
+ document.getElementsByName('searchfor')[0].value = '';
}
border-right: solid 1px #000000;\r
}\r
\r
-td.available_tags,td.selected_tags {\r
+td.available_tags,td.selected_tags,td.searchfor {\r
border-bottom: solid 1px #000000;\r
padding-top: 10px;\r
padding-bottom: 10px;\r
<table>
+ <tr>
+ <td style="vertical-align: middle; text-decoration: underline;">
+ <input type="image" src="resources/loupe.png" alt="Tag-Search" />
+ Tag-Search:
+ </td>
+ </tr>
+ <tr>
+ <td class="searchfor">
+ <form onsubmit="startSearch(document.getElementsByName('searchfor')[0].value); return false;">
+ <input type="text" name="searchfor" value="{$searchfor}" size="15" />
+ <input type="image" src="resources/doit.png" alt="Tag-Search" />
+ </form>
+ </td>
+ </tr>
<tr>
<td style="vertical-align: middle; text-decoration: underline;">
<img src="resources/available_tags.png" \>Available Tags: