From f7ccbde31062488cbf04b3e4c06a9aa590ebfedd Mon Sep 17 00:00:00 2001 From: mensonge Date: Thu, 4 Dec 2008 15:30:59 +0000 Subject: 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 --- api/export_gcs.php | 5 +++++ scuttle.css | 6 ++++++ search.php | 3 +++ templates/top.inc.php | 3 +++ 4 files changed, 17 insertions(+) diff --git a/api/export_gcs.php b/api/export_gcs.php index fd1121e..1040dd4 100644 --- a/api/export_gcs.php +++ b/api/export_gcs.php @@ -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'); diff --git a/scuttle.css b/scuttle.css index 2ab1616..271416a 100644 --- a/scuttle.css +++ b/scuttle.css @@ -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; diff --git a/search.php b/search.php index ff3729e..273fc05 100644 --- a/search.php +++ b/search.php @@ -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 ').'Google Custom Search page.'; + } $tplVars['rsschannels'] = array(); $tplVars['page'] = $page; $tplVars['start'] = $start; diff --git a/templates/top.inc.php b/templates/top.inc.php index 55f0aaa..9bce24f 100644 --- a/templates/top.inc.php +++ b/templates/top.inc.php @@ -53,4 +53,7 @@ if (isset($error) && $error!='') { if (isset($msg) && $msg!='') { echo '

'. $msg ."

\n"; } +if (isset($tipMsg) && $tipMsg!='') { + echo '

'. $tipMsg ."

\n"; +} ?> \ No newline at end of file -- cgit v1.2.3