View of /mambo/branches/4.6/mambots/editors/mostlyce/jscripts/tiny_mce/plugins/advlink/search.html.php
Parent Directory
|
Revision Log
Revision 160 -
(download)
(annotate)
Sun Jan 22 08:04:13 2006 UTC (7 years, 4 months ago) by cauld
File size: 6559 byte(s)
Sun Jan 22 08:04:13 2006 UTC (7 years, 4 months ago) by cauld
File size: 6559 byte(s)
cauld - adding MOStlyCE mambot
<?php /** * @version $Id: search.html.php,v 1.7 2005/02/16 10:43:04 akede Exp $ * @package Mambo * @subpackage Search * @copyright (C) 2000 - 2005 Miro International Pty Ltd * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL * Mambo is Free Software */ //Modified for mosCE Advanced Link Search feature - 20/02/2005 Ryan Demmer /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); /** * @package Mambo * @subpackage Search */ class search_html { function openhtml( $params ) { if ( $params->get( 'page_title' ) ) { ?> <div class="componentheading<?php echo $params->get( 'pageclass_sfx' ); ?>"> <?php echo $params->get( 'header' ); ?> </div> <?php } } function searchbox( $searchword, &$lists, $params ) { global $Itemid, $mosConfig_live_site; $tinyMCE_URL = $mosConfig_live_site."/mambots/editors/mostlyce/jscripts/tiny_mce"; ?> <script language="javascript" type="text/javascript" src="<?php echo $tinyMCE_URL;?>/tiny_mce_popup.js"></script> <form action="search.php" method="post"> <table class="contentpaneopen<?php echo $params->get( 'pageclass_sfx' ); ?>"> <tr> <td nowrap="nowrap"> <?php echo _insert_link_search ?>: </td> <td nowrap="nowrap"> <input type="text" name="searchword"size="15" value="<?php echo stripslashes($searchword);?>" class="inputbox" /> </td> <td width="100%" nowrap="nowrap"> <input type="submit" name="submit" value="<?php echo _insert_link_searchTitle ?>" class="button" /> </td> </tr> <tr> <td colspan="3"> <?php echo $lists['searchphrase']; ?> </td> </tr> <tr> <td colspan="3"><?php echo _insert_link_searchorder ?>: <?php echo $lists['ordering'];?></td> </tr> </table> <input type="hidden" name="Itemid" value="<?php echo $Itemid; ?>" /> </form> <?php } function searchintro( $searchword, $params ) { ?> <table class="searchintro<?php echo $params->get( 'pageclass_sfx' ); ?>"> <tr> <td colspan="3" align="left"><?php echo _insert_link_searchkey; ' <b>' . stripslashes($searchword) . '</b>'; ?> <?php } function message( $message, $params ) { ?> <table class="searchintro<?php echo $params->get( 'pageclass_sfx' ); ?>"> <tr> <td colspan="3" align="left"> <?php eval ('echo "'.$message.'";'); ?> </td> </tr> </table> <?php } function displaynoresult() { ?> </td> </tr> <?php } function display( &$rows, $params ) { global $mosConfig_offset, $mosConfig_live_site; $c = count ($rows); $tabclass = array("sectiontableentry1", "sectiontableentry2"); $k = 0; // number of matches found printf( _SEARCH_MATCHES, $c ); ?> </td> </tr> </table> <br /> <table class="contentpaneopen<?php echo $params->get( 'pageclass_sfx' ); ?>"> <?php foreach ($rows as $row) { if ($row->created) { $created = mosFormatDate ($row->created, '%d %B, %Y'); } else { $created = ''; } ?> <tr> <td> <?php if ( strstr( $row->href, 'http://' ) ) { $href = $row->href; }else{ $href = "$mosConfig_live_site/".$row->href; } $title = $row->title; $section = $row->section; $text = $row->text; ?> <a href="javascript:;" onClick="SearchLink('<?php echo $href; ?>');"> <?php echo $title; ?> </a> (<?php echo $section; ?>) </td> </tr> <tr> <td> <?php echo $text;?> … </td> </tr> <tr> <td> <?php echo $created; ?> </td> </tr> <tr> <td> </td> </tr> <?php $k = 1 - $k; } } } ?> <head> <script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script> <script language="javascript" type="text/javascript" src="link.js"></script> </head>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

