View of /mambo/branches/4.5.3h/modules/mod_search.php
Parent Directory
|
Revision Log
Revision 1416 -
(download)
(annotate)
Fri Nov 23 12:01:17 2007 UTC (5 years, 6 months ago) by ocs_cms
File size: 1746 byte(s)
Fri Nov 23 12:01:17 2007 UTC (5 years, 6 months ago) by ocs_cms
File size: 1746 byte(s)
fixed header comment blocks to meet coding standards and to remove the invalid link to GNU/GPL version 2 license. Author and License references in the XML files replaced with mambo-foundation
<?php
/**
* @package Mambo
* @author Mambo Foundation Inc see README.php
* @copyright Mambo Foundation Inc.
* @license GNU/GPL Version 2, see LICENSE.php
* Mambo is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; version 2 of the License.
*/
/** 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>| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

