adsense_cse.results.inc in Google AdSense integration 6
Same filename and directory in other branches
Displays the page containing the results of the Adsense for Search box.
File
cse/adsense_cse.results.incView source
<?php
/**
* @file
* Displays the page containing the results of the Adsense for Search box.
*/
/**
* Creates the CSE search results page for site-embedded search results.
*
* @return string
* JavaScript that embeds the Google results
*/
function _adsense_cse_results() {
// Log the search keys:
watchdog('AdSense search', 'Search keywords: ' . urldecode(check_plain($_GET['as_q'])));
// Output search results.
$width = variable_get('adsense_cse_frame_width', ADSENSE_CSE_FRAME_WIDTH_DEFAULT);
$country = variable_get('adsense_cse_country', ADSENSE_CSE_COUNTRY_DEFAULT);
if (variable_get('adsense_test_mode', ADSENSE_TEST_MODE_DEFAULT)) {
$output = theme('adsense_placeholder', "Results<br />width = {$width}<br />country = {$country}", $width, 100);
}
else {
$output = <<<CSE_RESULTS_TXT
<div id="cse-search-results"></div>
<script type="text/javascript">
var googleSearchIframeName = "cse-search-results";
var googleSearchFormName = "cse-search-box";
var googleSearchFrameWidth = {<span class="php-variable">$width</span>};
var googleSearchDomain = "{<span class="php-variable">$country</span>}";
var googleSearchPath = "/cse";
var googleSearchQueryString = "as_q";
</script>
<script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script>
CSE_RESULTS_TXT;
// Remove empty lines.
$output = str_replace("\n\n", "\n", $output);
}
return $output;
}
Functions
Name | Description |
---|---|
_adsense_cse_results | Creates the CSE search results page for site-embedded search results. |