View of /mambo/branches/4.6/modules/mod_search.php
Parent Directory
|
Revision Log
Revision 297 -
(download)
(annotate)
Thu Feb 16 21:43:38 2006 UTC (7 years, 4 months ago) by csouza
File size: 1817 byte(s)
Thu Feb 16 21:43:38 2006 UTC (7 years, 4 months ago) by csouza
File size: 1817 byte(s)
replacement of copyright notices
<?php /** * @package Mambo Open Source * @copyright (C) 2005 - 2006 Mambo Foundation Inc. * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * * Mambo was originally developed by Miro (www.miro.com.au) in 2000. Miro assigned the copyright in Mambo to The Mambo Foundation in 2005 to ensure * that Mambo remained free Open Source software owned and managed by the community. * 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', T_('Search') ); $width = intval( $params->get( 'width', 20 ) ); $text = $params->get( 'text', T_('search...') ); $moduleclass_sfx = $params->get( 'moduleclass_sfx' ); $output = '<input alt="'.T_('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 |

