15b91c7e66
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@173 b3834d28-1941-0410-a4f8-b48e95affb8f
52 lines
1.9 KiB
PHP
52 lines
1.9 KiB
PHP
<?php
|
|
|
|
|
|
/* Managing all possible inputs */
|
|
$select_watchlist = isset($select_watchlist)?$select_watchlist:'';
|
|
$select_all = isset($select_all)?$select_all:'';
|
|
?>
|
|
|
|
|
|
<form id="search" action="<?php echo createURL('search'); ?>" method="post">
|
|
<table>
|
|
<tr>
|
|
<?php
|
|
if ($userservice->isLoggedOn()) {
|
|
$currentUser = $userservice->getCurrentObjectUser();
|
|
$currentUsername = $currentUser->getUsername();
|
|
}
|
|
if ($userservice->isLoggedOn() || isset($user)) {
|
|
?>
|
|
<td><?php echo T_('Search' /* Search ... for */); ?></td>
|
|
<td>
|
|
<select name="range">
|
|
<?php
|
|
if (!in_array($range, array($currentUsername, 'all', 'watchlist'))) {
|
|
?>
|
|
<option value="<?php echo $user ?>"<?php //echo $selectUser; ?>><?php echo T_("this user's bookmarks"); ?></option>
|
|
<?php
|
|
}
|
|
if ($userservice->isLoggedOn()) {
|
|
?>
|
|
<option value="<?php echo $currentUsername; ?>"<?php //echo $selectMy; ?>><?php echo T_('my bookmarks'); ?></option>
|
|
<option value="watchlist"<?php echo $select_watchlist; ?>><?php echo T_('my watchlist'); ?></option>
|
|
<?php
|
|
}
|
|
?>
|
|
<option value="all"<?php echo $select_all; ?>><?php echo T_('all bookmarks'); ?></option>
|
|
</select>
|
|
</td>
|
|
<td><?php echo T_('for' /* Search ... for */); ?></td>
|
|
<?php
|
|
} else {
|
|
?>
|
|
<td><input type="hidden" name="range" value="all" /></td>
|
|
<?php
|
|
}
|
|
?>
|
|
<td><input type="text" name="terms" size="30" value="<?php $terms=!isset($terms)?'':$terms; echo filter($terms); ?>" /></td>
|
|
<td><input type="submit" value="<?php echo T_('Search' /* Submit button */); ?>" /></td>
|
|
</tr>
|
|
</table>
|
|
</form>
|