tab2spaces
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@503 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
ff582fe043
commit
064c45d77e
1 changed files with 34 additions and 34 deletions
|
@ -41,8 +41,8 @@ if (POST_TERMS != '') {
|
||||||
|
|
||||||
/* Managing current logged user */
|
/* Managing current logged user */
|
||||||
$currentUserId = $userservice->getCurrentUserId();
|
$currentUserId = $userservice->getCurrentUserId();
|
||||||
|
|
||||||
|
|
||||||
$exploded = isset($_SERVER['PATH_INFO'])
|
$exploded = isset($_SERVER['PATH_INFO'])
|
||||||
? explode('/', $_SERVER['PATH_INFO']) : null;
|
? explode('/', $_SERVER['PATH_INFO']) : null;
|
||||||
if(count($exploded) == 4) {
|
if(count($exploded) == 4) {
|
||||||
|
@ -53,7 +53,7 @@ if (POST_TERMS != '') {
|
||||||
} else {
|
} else {
|
||||||
list($url, $range, $terms) = $exploded;
|
list($url, $range, $terms) = $exploded;
|
||||||
$page= NULL;
|
$page= NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
$tplVars['loadjs'] = true;
|
$tplVars['loadjs'] = true;
|
||||||
|
|
||||||
|
@ -84,29 +84,29 @@ if (POST_TERMS != '') {
|
||||||
$selected = ' selected="selected"';
|
$selected = ' selected="selected"';
|
||||||
|
|
||||||
switch ($range) {
|
switch ($range) {
|
||||||
case 'all':
|
case 'all':
|
||||||
$tplVars['select_all'] = $selected;
|
$tplVars['select_all'] = $selected;
|
||||||
$s_user = NULL;
|
$s_user = NULL;
|
||||||
break;
|
break;
|
||||||
case 'watchlist':
|
case 'watchlist':
|
||||||
$tplVars['select_watchlist'] = $selected;
|
$tplVars['select_watchlist'] = $selected;
|
||||||
$s_user = $currentUserId;
|
$s_user = $currentUserId;
|
||||||
$s_watchlist = true;
|
$s_watchlist = true;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
$s_user = $range;
|
$s_user = $range;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isset($s_user)) {
|
if (isset($s_user)) {
|
||||||
$tplVars['user'] = $range;
|
$tplVars['user'] = $range;
|
||||||
$s_user = $userservice->getIdFromUser($s_user);
|
$s_user = $userservice->getIdFromUser($s_user);
|
||||||
if($s_user == NULL) {
|
if($s_user == NULL) {
|
||||||
$tplVars['error'] = sprintf(T_('User with username %s was not found'), $s_user);
|
$tplVars['error'] = sprintf(T_('User with username %s was not found'), $s_user);
|
||||||
$templateservice->loadTemplate('error.404.tpl', $tplVars);
|
$templateservice->loadTemplate('error.404.tpl', $tplVars);
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$bookmarks =& $bookmarkservice->getBookmarks($start, $perpage, $s_user, NULL, $terms, getSortOrder(), $s_watchlist, $s_start, $s_end);
|
$bookmarks =& $bookmarkservice->getBookmarks($start, $perpage, $s_user, NULL, $terms, getSortOrder(), $s_watchlist, $s_start, $s_end);
|
||||||
|
@ -115,22 +115,22 @@ if (POST_TERMS != '') {
|
||||||
$searchhistoryservice->addSearch($terms, $range, $bookmarks['total'], $currentUserId);
|
$searchhistoryservice->addSearch($terms, $range, $bookmarks['total'], $currentUserId);
|
||||||
|
|
||||||
if($GLOBALS['enableGoogleCustomSearch']) {
|
if($GLOBALS['enableGoogleCustomSearch']) {
|
||||||
$tplVars['tipMsg'] = T_('Unsatisfied? You can also try our ').'<a href="'.createUrl('gsearch/index').'">Google Custom Search page</a>.';
|
$tplVars['tipMsg'] = T_('Unsatisfied? You can also try our ').'<a href="'.createUrl('gsearch/index').'">Google Custom Search page</a>.';
|
||||||
}
|
}
|
||||||
$tplVars['rsschannels'] = array();
|
$tplVars['rsschannels'] = array();
|
||||||
$tplVars['page'] = $page;
|
$tplVars['page'] = $page;
|
||||||
$tplVars['start'] = $start;
|
$tplVars['start'] = $start;
|
||||||
$tplVars['popCount'] = 25;
|
$tplVars['popCount'] = 25;
|
||||||
$tplVars['sidebar_blocks'] = array('search', 'recent', 'menu2');
|
$tplVars['sidebar_blocks'] = array('search', 'recent', 'menu2');
|
||||||
$tplVars['range'] = $range;
|
$tplVars['range'] = $range;
|
||||||
$tplVars['terms'] = $terms;
|
$tplVars['terms'] = $terms;
|
||||||
$tplVars['pagetitle'] = T_('Search Bookmarks');
|
$tplVars['pagetitle'] = T_('Search Bookmarks');
|
||||||
$tplVars['bookmarkCount'] = $start + 1;
|
$tplVars['bookmarkCount'] = $start + 1;
|
||||||
$tplVars['total'] = $bookmarks['total'];
|
$tplVars['total'] = $bookmarks['total'];
|
||||||
$tplVars['bookmarks'] =& $bookmarks['bookmarks'];
|
$tplVars['bookmarks'] =& $bookmarks['bookmarks'];
|
||||||
$tplVars['cat_url'] = createURL('tags', '%2$s');
|
$tplVars['cat_url'] = createURL('tags', '%2$s');
|
||||||
$tplVars['nav_url'] = createURL('search', $range .'/'. $terms .'/%3$s');
|
$tplVars['nav_url'] = createURL('search', $range .'/'. $terms .'/%3$s');
|
||||||
|
|
||||||
$templateservice->loadTemplate('bookmarks.tpl', $tplVars);
|
$templateservice->loadTemplate('bookmarks.tpl', $tplVars);
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
Loading…
Reference in a new issue