summaryrefslogtreecommitdiffstatshomepage
path: root/data/templates/minimal/search.menu.php
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/minimal/search.menu.php')
-rw-r--r--data/templates/minimal/search.menu.php55
1 files changed, 55 insertions, 0 deletions
diff --git a/data/templates/minimal/search.menu.php b/data/templates/minimal/search.menu.php
new file mode 100644
index 0000000..cb82a95
--- /dev/null
+++ b/data/templates/minimal/search.menu.php
@@ -0,0 +1,55 @@
+<?php
+
+
+/* Managing all possible inputs */
+$select_watchlist = isset($select_watchlist) ? $select_watchlist : '';
+$select_all = isset($select_all) ? $select_all : '';
+
+$selected = ' selected="selected"';
+if (!isset($range)) {
+ $range = '';
+}
+?>
+
+
+<form id="search" action="<?php echo createURL('search'); ?>" method="post">
+
+ <?php
+ $currentUser = $currentUsername = null;
+ if ($userservice->isLoggedOn()) {
+ $currentUser = $userservice->getCurrentObjectUser();
+ $currentUsername = $currentUser->getUsername();
+ }
+ if ($userservice->isLoggedOn() || isset($user)) {
+ ?>
+
+ <input class="form-control" type="text" name="terms" size="25" placeholder="<?php $terms=!isset($terms)?T_('Search...'):$terms; echo filter($terms); ?>" />
+ <?php echo T_('in') ?>
+
+ <select name="range" class="form-control">
+ <?php
+ if ($range == 'user' && $user!=$currentUsername) {
+ ?>
+ <option value="<?php echo $user ?>"><?php echo T_("this user's bookmarks"); ?></option>
+ <?php
+ }
+ if ($userservice->isLoggedOn()) {
+ ?>
+ <option value="<?php echo $currentUsername; ?>"><?php echo T_('my bookmarks'); ?></option>
+ <option value="watchlist" <?php echo ($range == 'watchlist')?$selected:''?> ><?php echo T_('my watchlist'); ?></option>
+ <?php
+ }
+ ?>
+ <option value="all" <?php echo ($range == 'all' || $range == '')?$selected:'' ?> ><?php echo T_('all bookmarks'); ?></option>
+ </select>
+
+ <?php
+ } else {
+ ?>
+ <input type="hidden" name="range" value="all" />
+ <?php
+ }
+ ?>
+ <input class="form-control" type="submit" value="<?php echo T_('Search'); ?>" />
+
+</form>