function getGoogleSearchForm()

in mwiki/extensions/GoogleCoop/GoogleCoop.php [69:81]


function getGoogleSearchForm( $wikiPage, $cx, $searchText  ) {
	 return implode( "\n", array ( 
		'<!-- Search Google -->', 
		'<form action="/wiki/' . $wikiPage . '" id="cse-search-results"><div>', 
		'<input type="hidden" name="cx" value="'. $cx . '" />', 
		'<input type="hidden" name="cof" value="FORID:9" />', 
		'<input type="text" name="q" size="25" />', 
		'<input type="submit" name="sa" value="' . $searchText . '" />', 
		'</div></form>', 
		'<script type="text/javascript" src="https://www.google.com/coop/cse/brand?form=cse-search-box&lang=en"></script>', 
		'<!-- Search Google -->', 
		) ) ;
}