]> saetta.ns0.it Git - joomla/jmnogosearch/commitdiff
Some bugfixes and started frontend.
authorAndrea Zagli <azagli@libero.it>
Sat, 19 Dec 2009 10:29:15 +0000 (11:29 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 19 Dec 2009 10:29:15 +0000 (11:29 +0100)
com_jmnogosearch/jmnogosearch.xml
com_jmnogosearch/site/controller.php
com_jmnogosearch/site/jmnogosearch.php
com_jmnogosearch/site/models/jmnogosearch.php
com_jmnogosearch/site/router.php
com_jmnogosearch/site/views/jmnogosearch/tmpl/default.xml
com_jmnogosearch/site/views/jmnogosearch/tmpl/default_form.php
com_jmnogosearch/site/views/jmnogosearch/view.html.php
mod_jmnogosearch/helper.php
mod_jmnogosearch/mod_jmnogosearch.php
mod_jmnogosearch/tmpl/default.php

index affcd238474313fa7186dfd7016e20ff97a7dd17..f45c718d00120e84d0221c2daf6379be7b467e53 100644 (file)
        </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>
index e2de40888ce1e58ba42acaab1d222dd9c9d1a040..77f5a74276abaf9197347d58c881c7d8786003af 100644 (file)
@@ -1,10 +1,10 @@
 <?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
@@ -19,21 +19,21 @@ jimport('joomla.application.component.controller');
 /**
  * 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();
        }
 
@@ -43,17 +43,17 @@ class mnoGoSearchController extends JController
                $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) {
@@ -65,9 +65,9 @@ class mnoGoSearchController extends JController
                
                // 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');
@@ -78,8 +78,7 @@ class mnoGoSearchController extends JController
 
                $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));
        }
index d7541fb7338902a93143dd545e704b0cbee8e224..82214fdbbd9f01ae3a562fc5698ab23d4069ee13 100644 (file)
@@ -1,10 +1,10 @@
 <?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.
@@ -18,7 +18,7 @@ defined( '_JEXEC' ) or die( 'Restricted access' );
 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'));
index a29b56ebd2458c405487256883f38c546de379d3..bb74495821c7b30c910511a566c397f7b5512eca 100644 (file)
@@ -1,10 +1,10 @@
 <?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
@@ -19,11 +19,11 @@ jimport('joomla.application.component.model');
 /**
  * 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
@@ -39,13 +39,6 @@ class mnoGoSearchModelSearch extends JModel
         */
        var $_total = null;
 
-       /**
-        * Search areas
-        *
-        * @var integer
-        */
-       var $_areas = null;
-
        /**
         * Pagination object
         *
@@ -72,14 +65,10 @@ class mnoGoSearchModelSearch extends JModel
                $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);
        }
 
        /**
@@ -105,19 +94,6 @@ class mnoGoSearchModelSearch extends JModel
                }
        }
 
-       /**
-        * 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
         *
@@ -129,7 +105,10 @@ class mnoGoSearchModelSearch extends JModel
                // 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();
@@ -144,19 +123,22 @@ class mnoGoSearchModelSearch extends JModel
                                $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
@@ -183,32 +165,4 @@ class mnoGoSearchModelSearch extends JModel
 
                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;
-       }
 }
index aed9b53526c6c6ac8ae33502e2fb08986ccd2113..46b9f8315fe788d077608a1d0fb1c3da3eb6a897 100644 (file)
@@ -1,10 +1,10 @@
 <?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.
@@ -15,7 +15,7 @@
  * @param      array
  * @return     array
  */
-function SearchBuildRoute( &$query )
+function JMnoGoSearchBuildRoute( &$query )
 {
        $segments = array();
 
@@ -41,7 +41,7 @@ function SearchBuildRoute( &$query )
  * @param      array
  * @return     array
  */
-function SearchParseRoute( $segments )
+function JMnoGoSearchParseRoute( $segments )
 {
        $vars = array();
 
@@ -50,4 +50,4 @@ function SearchParseRoute( $segments )
        $vars['view'] = 'search';
 
        return $vars;
-}
\ No newline at end of file
+}
index 372f1e2a53f0a86823c3e77c220aa28f0407f268..98f7c5e2ce87e3c952fae893c746724284760e58 100644 (file)
@@ -9,14 +9,10 @@
                <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>
index 9659edeb8a7cb2c6d2c3f1ccb278a93213e9e4b2..7a53507d079ae42358ad9a0ba5083fa740897179 100644 (file)
@@ -1,6 +1,6 @@
 <?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>
@@ -72,5 +60,5 @@
 </div>
 <?php endif; ?>
 
-<input type="hidden" name="task"   value="search" />
+<input type="hidden" name="task" value="search" />
 </form>
index f0f2cef4d50e74f5684b5310f4aa0d293d296e1e..2b8280e0af124993280da740c5228ce689d6ce74 100644 (file)
@@ -1,10 +1,10 @@
 <?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.
@@ -31,22 +31,21 @@ class JMnoGoSearchViewJMnoGoSearch extends JView
                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
@@ -59,7 +58,7 @@ class JMnoGoSearchViewJMnoGoSearch extends JView
                        $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
@@ -67,32 +66,31 @@ class JMnoGoSearchViewJMnoGoSearch extends JView
 
                // 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' );
                }
 
@@ -106,9 +104,9 @@ class JMnoGoSearchViewJMnoGoSearch extends JView
 
                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');
 
@@ -127,7 +125,7 @@ class JMnoGoSearchViewJMnoGoSearch extends JView
                                        $needle = $searchwords[0];
                                }
 
-                               $row = SearchHelper::prepareSearchContent( $row, 200, $needle );
+                               $row = JMnoGoSearchHelper::prepareSearchContent( $row, 200, $needle );
                                $searchwords = array_unique( $searchwords );
                                $searchRegex = '#(';
                                $x = 0;
@@ -149,26 +147,25 @@ class JMnoGoSearchViewJMnoGoSearch extends JView
                                    $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);
        }
index 7a0c9f4d41bc49daeb92b15ab7af95cde0490c2f..d2569f1f0a51676467257ac80f1f09fc1dd2091f 100644 (file)
@@ -1,10 +1,10 @@
 <?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.
@@ -14,7 +14,7 @@
 // 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;
index d26d9b2d099d490e50695f768597f947bb35566a..274880a657c2e82589d5cbf79967eda42a6720df 100644 (file)
@@ -28,7 +28,7 @@ $set_Itemid            = intval($params->get('set_itemid', 0));
 $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'));
index 12cc23af059e990b16a0c0df4c4bf68ad320dd3a..e29323a425d999c0fad25a12a74b4e9bb6da314f 100644 (file)
@@ -3,7 +3,7 @@ defined('_JEXEC') or die('Restricted access'); ?>
 <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) :
@@ -37,8 +37,8 @@ defined('_JEXEC') or die('Restricted access'); ?>
                        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>