1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php /** * @version $Id: mod_search.php,v 1.5 2005/01/15 07:47:12 stingrey Exp $ * @package Mambo * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */
/** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
$button = $params->get( 'button', '' ); $button_pos = $params->get( 'button_pos', 'left' ); $button_text = $params->get( 'button_text', _SEARCH_TITLE ); $width = intval( $params->get( 'width', 20 ) ); $text = $params->get( 'text', _SEARCH_BOX ); $moduleclass_sfx = $params->get( 'moduleclass_sfx' );
$output = '<input alt="search" class="inputbox'. $moduleclass_sfx .'" type="text" name="searchword" size="'. $width .'" value="'. $text .'" onblur="if(this.value==\'\') this.value=\''. $text .'\';" onfocus="if(this.value==\''. $text .'\') this.value=\'\';" />';
if ( $button ) { $button = '<input type="submit" value="'. $button_text .'" class="button'. $moduleclass_sfx .'"/>'; }
switch ( $button_pos ) { case 'top': $button = $button .'<br/>'; $output = $button . $output; break; case 'bottom': $button = '<br/>'. $button; $output = $output . $button; break; case 'right': $output = $output . $button; break;
case 'left': default: $output = $button . $output; break; } ?>
<form action="<?php echo sefRelToAbs("index.php"); ?>" method="post">
<div align="left" class="search<?php echo $moduleclass_sfx; ?>"> <?php echo $output; ?> </div>
<input type="hidden" name="option" value="search" /> </form>
|