</uninstall>
<files folder="site">
+ <filename>controller.php</filename>
<filename>index.html</filename>
+ <filename>jmnogosearch.php</filename>
+ <filename>router.php</filename>
+ <filename>models/index.html</filename>
+ <filename>models/jmnogosearch.php</filename>
+ <filename>views/index.html</filename>
+ <filename>views/jmnogosearch/index.html</filename>
+ <filename>views/jmnogosearch/metadata.xml</filename>
+ <filename>views/jmnogosearch/view.html.php</filename>
+ <filename>views/jmnogosearch/tmpl/default.php</filename>
+ <filename>views/jmnogosearch/tmpl/default.xml</filename>
+ <filename>views/jmnogosearch/tmpl/default_error.php</filename>
+ <filename>views/jmnogosearch/tmpl/default_form.php</filename>
+ <filename>views/jmnogosearch/tmpl/default_results.php</filename>
+ <filename>views/jmnogosearch/tmpl/index.html</filename>
</files>
<administration>
<?php
/**
- * @version $Id: com_mnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
- * @package com_mnoGoSearch
+ * @version $Id: com_jmnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
+ * @package com_jmnoGoSearch
* @copyright Copyright (C) 2009 Andrea Zagli. All rights reserved.
* @license GNU/GPL, see LICENSE.php
- * com_mnoGoSearch is free software. This version may have been modified pursuant
+ * com_jmnoGoSearch is free software. This version may have been modified pursuant
* GNU General Public License, and as distributed it includes or is derivative
* of works licensed under the GNU General Public License or other free or open
* source software licenses. See COPYRIGHT.php for copyright notices and
/**
* Search Component Controller
*
- * @package mnoGoSearch
- * @subpackage mnoGoSearch
- * @since 1.5
+ * @package jmnoGoSearch
+ * @subpackage jmnoGoSearch
+ * @since 1.0
*/
-class mnoGoSearchController extends JController
+class JMnoGoSearchController extends JController
{
/**
* Method to show the search view
*
* @access public
- * @since 1.5
+ * @since 1.0
*/
function display()
{
- JRequest::setVar('view','search'); // force it to be the polls view
+ JRequest::setVar('view', 'jmnogosearch'); // force it to be the polls view
parent::display();
}
$badchars = array('#','>','<','\\');
$searchword = trim(str_replace($badchars, '', JRequest::getString('searchword', null, 'post')));
// if searchword enclosed in double quotes, strip quotes and do exact match
- if (substr($searchword,0,1) == '"' && substr($searchword, -1) == '"') {
+ if (substr($searchword, 0, 1) == '"' && substr($searchword, -1) == '"') {
$post['searchword'] = substr($searchword,1,-1);
JRequest::setVar('searchphrase', 'exact');
}
else {
$post['searchword'] = $searchword;
}
- $post['ordering'] = JRequest::getWord('ordering', null, 'post');
- $post['searchphrase'] = JRequest::getWord('searchphrase', 'all', 'post');
- $post['limit'] = JRequest::getInt('limit', null, 'post');
- if($post['limit'] === null) unset($post['limit']);
+ $post['ordering'] = JRequest::getWord('ordering', null, 'post');
+ $post['searchphrase'] = JRequest::getWord('searchphrase', 'all', 'post');
+ $post['limit'] = JRequest::getInt('limit', null, 'post');
+ if ($post['limit'] === null) unset($post['limit']);
$areas = JRequest::getVar('areas', null, 'post', 'array');
if ($areas) {
// set Itemid id for links from menu
$menu = &JSite::getMenu();
- $items = $menu->getItems('link', 'index.php?option=com_mnogosearch&view=search');
+ $items = $menu->getItems('link', 'index.php?option=com_jmnogosearch&view=jmnogosearch');
- if(isset($items[0])) {
+ if (isset($items[0])) {
$post['Itemid'] = $items[0]->id;
} else if (JRequest::getInt('Itemid') > 0) { //use Itemid from requesting page only if there is no existing menu
$post['Itemid'] = JRequest::getInt('Itemid');
$uri = JURI::getInstance();
$uri->setQuery($post);
- $uri->setVar('option', 'com_mnogosearch');
-
+ $uri->setVar('option', 'com_jmnogosearch');
$this->setRedirect(JRoute::_('index.php'.$uri->toString(array('query', 'fragment')), false));
}
<?php
/**
- * @version $Id: com_mnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
- * @package com_mnoGoSearch
+ * @version $Id: com_jmnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
+ * @package com_jmnoGoSearch
* @copyright Copyright (C) 2009 Andrea Zagli. All rights reserved.
* @license GNU/GPL, see LICENSE.php
- * com_mnoGoSearch is free software. This version may have been modified pursuant
+ * com_jmnoGoSearch is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
require_once (JPATH_COMPONENT.DS.'controller.php');
// Create the controller
-$controller = new mnoGoSearchController( );
+$controller = new JMnoGoSearchController( );
// Perform the Request task
$controller->execute(JRequest::getCmd('task'));
<?php
/**
- * @version $Id: com_mnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
- * @package com_mnoGoSearch
+ * @version $Id: com_jmnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
+ * @package com_jmnoGoSearch
* @copyright Copyright (C) 2009 Andrea Zagli. All rights reserved.
* @license GNU/GPL, see LICENSE.php
- * com_mnoGoSearch is free software. This version may have been modified pursuant
+ * com_jmnoGoSearch is free software. This version may have been modified pursuant
* GNU General Public License, and as distributed it includes or is derivative
* of works licensed under the GNU General Public License or other free or open
* source software licenses. See COPYRIGHT.php for copyright notices and
/**
* Search Component Search Model
*
- * @package Joomla
- * @subpackage Search
- * @since 1.5
+ * @package JMnoGoSearch
+ * @subpackage JMnoGoSearch
+ * @since 1.0
*/
-class mnoGoSearchModelSearch extends JModel
+class JMnoGoSearchModelJMnoGoSearch extends JModel
{
/**
* Sezrch data array
*/
var $_total = null;
- /**
- * Search areas
- *
- * @var integer
- */
- var $_areas = null;
-
/**
* Pagination object
*
$this->setState('limitstart', JRequest::getVar('limitstart', 0, '', 'int'));
// Set the search parameters
- $keyword = urldecode(JRequest::getString('searchword'));
- $match = JRequest::getWord('searchphrase', 'all');
- $ordering = JRequest::getWord('ordering', 'newest');
+ $keyword = urldecode(JRequest::getString('searchword'));
+ $match = JRequest::getWord('searchphrase', 'all');
+ $ordering = JRequest::getWord('ordering', 'newest');
$this->setSearch($keyword, $match, $ordering);
-
- //Set the search areas
- $areas = JRequest::getVar('areas');
- $this->setAreas($areas);
}
/**
}
}
- /**
- * Method to set the search areas
- *
- * @access public
- * @param array Active areas
- * @param array Search areas
- */
- function setAreas($active = array(), $search = array())
- {
- $this->_areas['active'] = $active;
- $this->_areas['search'] = $search;
- }
-
/**
* Method to get weblink item data for the category
*
// Lets load the content if it doesn't already exist
if (empty($this->_data))
{
- $areas = $this->getAreas();
+ /* TODO must be configurable */
+ $agent = udm_alloc_agent ('pgsql://postgres:postgres@localhost/mnogosearch/?dbmode=single');
+
+ $mResult = udm_find ($agent,'works');
JPluginHelper::importPlugin( 'search');
$dispatcher =& JDispatcher::getInstance();
$rows = array_merge( (array) $rows, (array) $result);
}
- $this->_total = count($rows);
+ $this->_total = udm_get_res_param ($mResult, UDM_PARAM_FOUND);
if($this->getState('limit') > 0) {
- $this->_data = array_splice($rows, $this->getState('limitstart'), $this->getState('limit'));
+ $this->_data = array_splice($rows, $this->getState('limitstart'), $this->getState('limit'));
} else {
$this->_data = $rows;
}
+
+ udm_free_res ($mResult);
+ udm_free_agent ($agent);
}
return $this->_data;
}
/**
- * Method to get the total number of weblink items for the category
+ * Method to get the total number of weblink items
*
* @access public
* @return integer
return $this->_pagination;
}
-
- /**
- * Method to get the search areas
- *
- * @since 1.5
- */
- function getAreas()
- {
- global $mainframe;
-
- // Load the Category data
- if (empty($this->_areas['search']))
- {
- $areas = array();
-
- JPluginHelper::importPlugin( 'search');
- $dispatcher =& JDispatcher::getInstance();
- $searchareas = $dispatcher->trigger( 'onSearchAreas' );
-
- foreach ($searchareas as $area) {
- $areas = array_merge( $areas, $area );
- }
-
- $this->_areas['search'] = $areas;
- }
-
- return $this->_areas;
- }
}
<?php
/**
- * @version $Id: router.php 11002 2008-10-07 01:12:20Z ian $
- * @package Joomla
- * @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
+ * @version $Id: router.php 11002 2009-12-19 01:12:20Z ian $
+ * @package JMnoGoSearch
+ * @copyright Copyright (C) 2009 Andrea Zagli. All rights reserved.
* @license GNU/GPL, see LICENSE.php
- * Joomla! is free software. This version may have been modified pursuant
+ * JMnoGoSearch is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* @param array
* @return array
*/
-function SearchBuildRoute( &$query )
+function JMnoGoSearchBuildRoute( &$query )
{
$segments = array();
* @param array
* @return array
*/
-function SearchParseRoute( $segments )
+function JMnoGoSearchParseRoute( $segments )
{
$vars = array();
$vars['view'] = 'search';
return $vars;
-}
\ No newline at end of file
+}
<name>Search</name>
<description>STANDARD SEARCH LAYOUT DESC</description>
<params>
- <param name="search_areas" type="radio" default="1" label="Use Search Areas" description="Show the search areas checkboxes">
- <option value="0">No</option>
- <option value="1">Yes</option>
- </param>
<param name="show_date" type="radio" default="1" label="Show Created Date" description="TIPIFSETTOSHOWDATETIMECREATED">
<option value="0">Hide</option>
<option value="1">Show</option>
</param>
</params>
</state>
-</metadata>
\ No newline at end of file
+</metadata>
<?php defined('_JEXEC') or die('Restricted access'); ?>
-<form id="searchForm" action="<?php echo JRoute::_( 'index.php?option=com_mnogosearch' );?>" method="post" name="searchForm">
+<form id="searchForm" action="<?php echo JRoute::_( 'index.php?option=com_jmnogosearch' );?>" method="post" name="searchForm">
<table class="contentpaneopen<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<tr>
<td nowrap="nowrap">
</td>
</tr>
</table>
- <?php if ($this->params->get( 'search_areas', 1 )) : ?>
- <?php echo JText::_( 'Search Only' );?>:
- <?php foreach ($this->searchareas['search'] as $val => $txt) :
- $checked = is_array( $this->searchareas['active'] ) && in_array( $val, $this->searchareas['active'] ) ? 'checked="checked"' : '';
- ?>
- <input type="checkbox" name="areas[]" value="<?php echo $val;?>" id="area_<?php echo $val;?>" <?php echo $checked;?> />
- <label for="area_<?php echo $val;?>">
- <?php echo JText::_($txt); ?>
- </label>
- <?php endforeach; ?>
- <?php endif; ?>
-
<table class="searchintro<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
<tr>
</div>
<?php endif; ?>
-<input type="hidden" name="task" value="search" />
+<input type="hidden" name="task" value="search" />
</form>
<?php
/**
- * @version $Id: com_mnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
- * @package com_mnoGoSearch
+ * @version $Id: com_jmnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
+ * @package com_jmnoGoSearch
* @copyright Copyright (C) 2009 Andrea Zagli. All rights reserved.
* @license GNU/GPL, see LICENSE.php
- * com_mnoGoSearch is free software. This version may have been modified pursuant
+ * com_jmnoGoSearch is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
require_once(JPATH_COMPONENT_ADMINISTRATOR.DS.'helpers'.DS.'jmnogosearch.php' );
// Initialize some variables
- $pathway =& $mainframe->getPathway();
- $uri =& JFactory::getURI();
+ $pathway =& $mainframe->getPathway();
+ $uri =& JFactory::getURI();
- $error = '';
- $rows = null;
- $total = 0;
+ $error = '';
+ $rows = null;
+ $total = 0;
// Get some data from the model
- $areas = &$this->get('areas');
- $state = &$this->get('state');
+ $state = &$this->get('state');
$searchword = $state->get('keyword');
$params = &$mainframe->getParams();
- $menus = &JSite::getMenu();
- $menu = $menus->getActive();
+ $menus = &JSite::getMenu();
+ $menu = $menus->getActive();
// because the application sets a default page title, we need to get it
// right from the menu item itself
$params->set('page_title', JText::_( 'Search' ));
}
- $document = &JFactory::getDocument();
+ $document = &JFactory::getDocument();
$document->setTitle( $params->get( 'page_title' ) );
// Get the parameters of the active menu item
// built select lists
$orders = array();
- $orders[] = JHTML::_('select.option', 'newest', JText::_( 'Newest first' ) );
- $orders[] = JHTML::_('select.option', 'oldest', JText::_( 'Oldest first' ) );
- $orders[] = JHTML::_('select.option', 'popular', JText::_( 'Most popular' ) );
- $orders[] = JHTML::_('select.option', 'alpha', JText::_( 'Alphabetical' ) );
- $orders[] = JHTML::_('select.option', 'category', JText::_( 'Section/Category' ) );
+ $orders[] = JHTML::_('select.option', 'newest', JText::_( 'Newest first' ) );
+ $orders[] = JHTML::_('select.option', 'oldest', JText::_( 'Oldest first' ) );
+ $orders[] = JHTML::_('select.option', 'popular', JText::_( 'Most popular' ) );
+ $orders[] = JHTML::_('select.option', 'alpha', JText::_( 'Alphabetical' ) );
$lists = array();
$lists['ordering'] = JHTML::_('select.genericlist', $orders, 'ordering', 'class="inputbox"', 'value', 'text', $state->get('ordering') );
- $searchphrases = array();
- $searchphrases[] = JHTML::_('select.option', 'all', JText::_( 'All words' ) );
- $searchphrases[] = JHTML::_('select.option', 'any', JText::_( 'Any words' ) );
- $searchphrases[] = JHTML::_('select.option', 'exact', JText::_( 'Exact phrase' ) );
- $lists['searchphrase' ]= JHTML::_('select.radiolist', $searchphrases, 'searchphrase', '', 'value', 'text', $state->get('match') );
+ $searchphrases = array();
+ $searchphrases[] = JHTML::_('select.option', 'all', JText::_( 'All words' ) );
+ $searchphrases[] = JHTML::_('select.option', 'any', JText::_( 'Any words' ) );
+ $searchphrases[] = JHTML::_('select.option', 'exact', JText::_( 'Exact phrase' ) );
+ $lists['searchphrase' ]= JHTML::_('select.radiolist', $searchphrases, 'searchphrase', '', 'value', 'text', $state->get('match') );
// log the search
- SearchHelper::logSearch( $searchword);
+ JMnoGoSearchHelper::logSearch($searchword);
//limit searchword
- if(SearchHelper::limitSearchWord($searchword)) {
+ if (JMnoGoSearchHelper::limitSearchWord($searchword)) {
$error = JText::_( 'SEARCH_MESSAGE' );
}
//sanatise searchword
- if(SearchHelper::santiseSearchWord($searchword, $state->get('match'))) {
+ if (JMnoGoSearchHelper::santiseSearchWord($searchword, $state->get('match'))) {
$error = JText::_( 'IGNOREKEYWORD' );
}
if(!$error)
{
- $results = &$this->get('data' );
- $total = &$this->get('total');
- $pagination = &$this->get('pagination');
+ $results = &$this->get('data');
+ $total = &$this->get('total');
+ $pagination = &$this->get('pagination');
require_once (JPATH_SITE.DS.'components'.DS.'com_content'.DS.'helpers'.DS.'route.php');
$needle = $searchwords[0];
}
- $row = SearchHelper::prepareSearchContent( $row, 200, $needle );
+ $row = JMnoGoSearchHelper::prepareSearchContent( $row, 200, $needle );
$searchwords = array_unique( $searchwords );
$searchRegex = '#(';
$x = 0;
$created = '';
}
- $result->created = $created;
- $result->count = $i + 1;
+ $result->created = $created;
+ $result->count = $i + 1;
}
}
- $this->result = JText::sprintf( 'TOTALRESULTSFOUND', $total );
+ $this->result = JText::sprintf( 'TOTALRESULTSFOUND', $total );
- $this->assignRef('pagination', $pagination);
- $this->assignRef('results', $results);
- $this->assignRef('lists', $lists);
- $this->assignRef('params', $params);
+ $this->assignRef('pagination', $pagination);
+ $this->assignRef('results', $results);
+ $this->assignRef('lists', $lists);
+ $this->assignRef('params', $params);
- $this->assign('ordering', $state->get('ordering'));
- $this->assign('searchword', $searchword);
- $this->assign('searchphrase', $state->get('match'));
- $this->assign('searchareas', $areas);
+ $this->assign('ordering', $state->get('ordering'));
+ $this->assign('searchword', $searchword);
+ $this->assign('searchphrase', $state->get('match'));
- $this->assign('total', $total);
- $this->assign('error', $error);
- $this->assign('action', $uri->toString());
+ $this->assign('total', $total);
+ $this->assign('error', $error);
+ $this->assign('action', $uri->toString());
parent::display($tpl);
}
<?php
/**
-* @version $Id: mod_mnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
-* @package mod_mnoGoSearch
+* @version $Id: mod_jmnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
+* @package mod_jmnoGoSearch
* @copyright Copyright (C) 2009 Andrea Zagli. All rights reserved.
* @license GNU/GPL, see LICENSE.php
-* mno_mnoGoSearch is free software. This version may have been modified pursuant
+* mno_jmnoGoSearch is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
// no direct access
defined('_JEXEC') or die('Restricted access');
-class modMnoGoSearchHelper {
+class modJMnoGoSearchHelper {
function getSearchImage($button_text) {
$img = JHTML::_('image.site', 'searchButton.gif', '/images/M_images/', NULL, NULL, $button_text, null, 0);
return $img;
$moduleclass_sfx = $params->get('moduleclass_sfx', '');
if ($imagebutton) {
- $img = modMnoGoSearchHelper::getSearchImage( $button_text );
+ $img = modJMnoGoSearchHelper::getSearchImage( $button_text );
}
$mitemid = $set_Itemid > 0 ? $set_Itemid : JRequest::getInt('Itemid');
-require(JModuleHelper::getLayoutPath('mod_mnogosearch'));
+require(JModuleHelper::getLayoutPath('mod_jmnogosearch'));
<form action="index.php" method="post">
<div class="search<?php echo $params->get('moduleclass_sfx') ?>">
<?php
- $output = '<input name="searchword" id="mod_mnogosearch_searchword" maxlength="'.$maxlength.'" alt="'.$button_text.'" class="inputbox'.$moduleclass_sfx.'" type="text" size="'.$width.'" value="'.$text.'" onblur="if(this.value==\'\') this.value=\''.$text.'\';" onfocus="if(this.value==\''.$text.'\') this.value=\'\';" />';
+ $output = '<input name="searchword" id="mod_jmnogosearch_searchword" maxlength="'.$maxlength.'" alt="'.$button_text.'" class="inputbox'.$moduleclass_sfx.'" type="text" size="'.$width.'" value="'.$text.'" onblur="if(this.value==\'\') this.value=\''.$text.'\';" onfocus="if(this.value==\''.$text.'\') this.value=\'\';" />';
if ($button) :
if ($imagebutton) :
echo $output;
?>
- <input type="hidden" name="task" value="search" />
- <input type="hidden" name="option" value="com_mnogosearch" />
+ <input type="hidden" name="task" value="search" />
+ <input type="hidden" name="option" value="com_jmnogosearch" />
<input type="hidden" name="Itemid" value=<?php echo $mitemid; ?> />
</div>
</form>