View of /mambo/branches/4.5.4/components/com_search/search.php
Parent Directory
|
Revision Log
Revision 89 -
(download)
(annotate)
Sat Dec 31 10:56:58 2005 UTC (7 years, 4 months ago) by counterpoint
File size: 6610 byte(s)
Sat Dec 31 10:56:58 2005 UTC (7 years, 4 months ago) by counterpoint
File size: 6610 byte(s)
Addition of mosFileManager and mosDirectory classes, further reduction of mambofunc.php.
<?php /** * @version $Id: search.php,v 1.2 2005/10/20 02:56:04 cauld 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 */ /** ensure this file is being included by a parent file */ defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); require_once( $mainframe->getPath( 'front_html' ) ); switch ( $task ) { default: viewSearch(); break; } function viewSearch() { global $mainframe, $mosConfig_absolute_path, $mosConfig_lang, $my; global $Itemid, $database, $_MAMBOTS; $gid = $my->gid; // Adds parameter handling if( $Itemid > 0 ) { $menu =& new mosMenu( $database ); $menu->load( $Itemid ); $params =& new mosParameters( $menu->params ); $params->def( 'page_title', 1 ); $params->def( 'pageclass_sfx', '' ); $params->def( 'header', $menu->name, _SEARCH_TITLE ); $params->def( 'back_button', $mainframe->getCfg( 'back_button' ) ); } else { $params =& new mosParameters(''); $params->def( 'page_title', 1 ); $params->def( 'pageclass_sfx', '' ); $params->def( 'header', _SEARCH_TITLE ); $params->def( 'back_button', $mainframe->getCfg( 'back_button' ) ); } // html output search_html::openhtml( $params ); $searchword = mosGetParam( $_REQUEST, 'searchword', '' ); $searchword = $database->getEscaped( trim( $searchword ) ); $search_ignore = array(); @include "$mosConfig_absolute_path/language/$mosConfig_lang.ignore.php"; $orders = array(); $orders[] = mosHTML::makeOption( 'newest', _SEARCH_NEWEST ); $orders[] = mosHTML::makeOption( 'oldest', _SEARCH_OLDEST ); $orders[] = mosHTML::makeOption( 'popular', _SEARCH_POPULAR ); $orders[] = mosHTML::makeOption( 'alpha', _SEARCH_ALPHABETICAL ); $orders[] = mosHTML::makeOption( 'category', _SEARCH_CATEGORY ); $ordering = mosGetParam( $_REQUEST, 'ordering', 'newest'); $lists = array(); $lists['ordering'] = mosHTML::selectList( $orders, 'ordering', 'class="inputbox"', 'value', 'text', $ordering ); $searchphrase = mosGetParam( $_REQUEST, 'searchphrase', 'any' ); $searchphrases = array(); $phrase = new stdClass(); $phrase->value = 'any'; $phrase->text = _SEARCH_ANYWORDS; $searchphrases[] = $phrase; $phrase = new stdClass(); $phrase->value = 'all'; $phrase->text = _SEARCH_ALLWORDS; $searchphrases[] = $phrase; $phrase = new stdClass(); $phrase->value = 'exact'; $phrase->text = _SEARCH_PHRASE; $searchphrases[] = $phrase; $lists['searchphrase']= mosHTML::radioList( $searchphrases, 'searchphrase', '', $searchphrase ); // html output search_html::searchbox( htmlspecialchars( $searchword ), $lists, $params ); if (!$searchword) { if ( count( $_POST ) ) { // html output // no matches found search_html::message( _NOKEYWORD, $params ); } } else if ( in_array( $searchword, $search_ignore ) ) { // html output search_html::message( _IGNOREKEYWORD, $params ); } else { // html output search_html::searchintro( htmlspecialchars( $searchword ), $params ); mosLogSearch( $searchword ); $phrase = mosGetParam( $_REQUEST, 'searchphrase', '' ); $ordering = mosGetParam( $_REQUEST, 'ordering', '' ); $_MAMBOTS->loadBotGroup( 'search' ); $results = $_MAMBOTS->trigger( 'onSearch', array( $searchword, $phrase, $ordering ) ); $rows = array(); foreach($results as $result) { if ($result) $rows = array_merge($rows, $result); } $totalRows = count( $rows ); for ($i=0; $i < $totalRows; $i++) { $row = &$rows[$i]->text; if ($phrase == 'exact') { $searchwords = array($searchword); $needle = $searchword; } else { $searchwords = explode(' ', $searchword); $needle = $searchwords[0]; } $row = mosPrepareSearchContent( $row, 200, $needle ); foreach ($searchwords as $hlword) { $row = preg_replace( '/'. preg_quote($hlword, '/'). '/i', "<span class=\"highlight\">\\0</span>", $row); } if (!eregi( '^http', $rows[$i]->href )) { // determines Itemid for Content items if ( strstr( $rows[$i]->href, 'view' ) ) { // tests to see if itemid has already been included - this occurs for typed content items if ( !strstr( $rows[$i]->href, 'Itemid' ) ) { $temp = explode( 'id=', $rows[$i]->href ); $rows[$i]->href = $rows[$i]->href. '&Itemid='. $mainframe->getItemid($temp[1]); } } } } $mainframe->setPageTitle( _SEARCH_TITLE ); if ( $totalRows ) { // html output search_html::display( $rows, $params ); } else { // html output search_html::displaynoresult(); } // html output search_html::conclusion( $totalRows, htmlspecialchars( $searchword ) ); } // displays back button echo '<br/>'; mosHTML::BackButton ( $params, 0 ); } function mosLogSearch( $search_term ) { global $database; global $mosConfig_enable_log_searches; if ( @$mosConfig_enable_log_searches ) { $query = "SELECT hits" . "\n FROM #__core_log_searches" . "\n WHERE LOWER(search_term)='$search_term'" ; $database->setQuery( $query ); $hits = intval( $database->loadResult() ); if ( $hits ) { $query = "UPDATE #__core_log_searches SET hits=(hits+1) WHERE LOWER(search_term)='$search_term'"; $database->setQuery( $query ); $database->query(); } else { $query = "INSERT INTO #__core_log_searches VALUES ('$search_term','1')"; $database->setQuery( $query ); $database->query(); } } } /** * Prepares results from search for display * @param string The source string * @param int Number of chars to trim * @param string The searchword to select around * @return string */ function mosPrepareSearchContent( $text, $length=200, $searchword ) { // strips tags won't remove the actual jscript $text = preg_replace( "'<script[^>]*>.*?</script>'si", "", $text ); $text = preg_replace( '/{.+?}/', '', $text); //$text = preg_replace( '/<a\s+.*?href="([^"]+)"[^>]*>([^<]+)<\/a>/is','\2', $text ); return mosSmartSubstr( strip_tags( $text ), $length, $searchword ); } /** * returns substring of characters around a searchword * @param string The source string * @param int Number of chars to return * @param string The searchword to select around * @return string */ function mosSmartSubstr($text, $length=200, $searchword) { $wordpos = strpos(strtolower($text), strtolower($searchword)); $halfside = intval($wordpos - $length/2 - strlen($searchword)); if ($wordpos && $halfside > 0) { return '...' . substr($text, $halfside, $length); } else { return substr( $text, 0, $length); } } ?>
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |

