Interface fix: add link to gsearch/ on normal search page

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@198 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2008-12-04 15:30:59 +00:00
parent 381c575564
commit f7ccbde310
4 changed files with 17 additions and 0 deletions

View file

@ -7,6 +7,11 @@
//require_once('httpauth.inc.php');
require_once('../header.inc.php');
if($GLOBALS['enableGoogleCustomSearch'] == false) {
echo "Google Custom Search disabled. You can enable it into the config.inc.php file.";
die;
}
$bookmarkservice =& ServiceFactory::getServiceInstance('BookmarkService');
$userservice =& ServiceFactory::getServiceInstance('UserService');

View file

@ -45,6 +45,7 @@ select:focus,
textarea:focus {
border-color: #666;
}
p.tipMsg,
p.error,
p.success {
border: 1px solid;
@ -53,6 +54,11 @@ p.success {
padding: 0.5em;
width: 70%;
}
p.tipMsg {
background: #FFFF99;
border-color: #CC9900;
color: #CC9900;
}
p.error {
background: #FCC;
border-color: #966;

View file

@ -117,6 +117,9 @@ if (POST_TERMS != '') {
// Save search
$searchhistoryservice->addSearch($terms, $range, $bookmarks['total'], $currentUserId);
if($GLOBALS['enableGoogleCustomSearch']) {
$tplVars['tipMsg'] = T_('Unsatisfied? You can also try our ').'<a href="'.createUrl('gsearch/index').'">Google Custom Search page</a>.';
}
$tplVars['rsschannels'] = array();
$tplVars['page'] = $page;
$tplVars['start'] = $start;

View file

@ -53,4 +53,7 @@ if (isset($error) && $error!='') {
if (isset($msg) && $msg!='') {
echo '<p class="success">'. $msg ."</p>\n";
}
if (isset($tipMsg) && $tipMsg!='') {
echo '<p class="tipMsg">'. $tipMsg ."</p>\n";
}
?>