<?php
/**
* @version $Id: com_mnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
-* @package com_mnoGoSearch
+* @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' );
-$controller = new mnoGoSearchController();
+$controller = new JMnoGoSearchController();
$controller->execute( JRequest::getCmd( 'task' ) );
$controller->redirect();
<?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
jimport('joomla.application.component.controller');
/**
- * @package mnoGoSearch
- * @subpackage mnoGoSearch
+ * @package JMnoGoSearch
+ * @subpackage JMnoGoSearch
*/
-class mnoGoSearchController extends JController
+class JMnoGoSearchController extends JController
{
/**
* Show Search Statistics
*/
function display()
{
- $model =& $this->getModel( 'Search' );
- $view =& $this->getView( 'Search' );
+ $model =& $this->getModel( 'JMnoGoSearch' );
+ $view =& $this->getView( 'JMnoGoSearch' );
$view->setModel( $model, true );
$view->display();
}
*/
function reset()
{
- $model =& $this->getModel( 'Search' );
+ $model =& $this->getModel( 'JMnoGoSearch' );
$model->reset();
- $this->setRedirect('index.php?option=com_mnogosearch');
+ $this->setRedirect('index.php?option=com_jmnogosearch');
}
}
<?php
/**
- * @version $Id: search.php 12389 2009-07-01 00:34:45Z ian $
- * @package Joomla
- * @subpackage Search
- * @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
- * @license GNU/GPL, see LICENSE.php
- * Joomla! is free software. This version may have been modified pursuant to the
+* @version $Id: com_mnogosearch.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_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
* @package Joomla
* @subpackage Search
*/
-class SearchHelper
+class JMnoGoSearchHelper
{
function santiseSearchWord(&$searchword, $searchphrase)
{
<?php
/**
- * @version $Id: site.php 12389 2009-07-01 00:34:45Z ian $
- * @package Joomla
- * @subpackage Search
- * @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
- * @license GNU/GPL, see LICENSE.php
- * Joomla! is free software. This version may have been modified pursuant to the
+* @version $Id: com_mnogosearch.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_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 details.
{
return array();
}
-}
\ No newline at end of file
+}
<?php
/**
- * @version $Id: com_mnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
- * @package com_mnoGoSearch
+ * @version $Id: comj_mnogosearch.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
jimport( 'joomla.application.component.model' );
/**
- * @package mnoGoSearch
- * @subpackage mnoGoSearch
+ * @package JMnoGoSearch
+ * @subpackage JMnoGoSearch
*/
-class mnoGoSearchModelSearch extends JModel
+class JMnoGoSearchModelJMnoGoSearch extends JModel
{
var $lists = '';
function reset()
{
$db =& JFactory::getDBO();
- $db->setQuery( 'DELETE FROM #__mnogosearch_log_searches' );
+ $db->setQuery( 'DELETE FROM #__jmnogosearch_log_searches' );
$db->query();
}
global $mainframe, $option;
$db =& JFactory::getDBO();
- $filter_order = $mainframe->getUserStateFromRequest( 'com_mnogosearch.filter_order', 'filter_order', 'hits', 'cmd' );
- $filter_order_Dir = $mainframe->getUserStateFromRequest( 'com_mnogosearch.filter_order_Dir', 'filter_order_Dir', '', 'word' );
+ $filter_order = $mainframe->getUserStateFromRequest( 'com_jmnogosearch.filter_order', 'filter_order', 'hits', 'cmd' );
+ $filter_order_Dir = $mainframe->getUserStateFromRequest( 'com_jmnogosearch.filter_order_Dir', 'filter_order_Dir', '', 'word' );
$limit = $mainframe->getUserStateFromRequest( 'global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int' );
- $limitstart = $mainframe->getUserStateFromRequest( 'com_mnogosearch.limitstart', 'limitstart', 0, 'int' );
- $search = $mainframe->getUserStateFromRequest( 'com_mnogosearch.search', 'search', '', 'string' );
+ $limitstart = $mainframe->getUserStateFromRequest( 'com_jmnogosearch.limitstart', 'limitstart', 0, 'int' );
+ $search = $mainframe->getUserStateFromRequest( 'com_jmnogosearch.search', 'search', '', 'string' );
$search = JString::strtolower( $search );
$showResults = JRequest::getInt('search_results');
// get the total number of records
$query = 'SELECT COUNT(*)'
- . ' FROM #__mnogosearch_log_searches'
+ . ' FROM #__jmnogosearch_log_searches'
. $where;
$db->setQuery( $query );
$total = $db->loadResult();
$pageNav = new JPagination( $total, $limitstart, $limit );
$query = ' SELECT * '
- . ' FROM #__mnogosearch_log_searches '
+ . ' FROM #__jmnogosearch_log_searches '
. $where
. $orderby;
$db->setQuery( $query, $pageNav->limitstart, $pageNav->limit );
$rows = $db->loadObjectList();
- JPluginHelper::importPlugin( 'search' );
+ JPluginHelper::importPlugin( 'jmnogosearch' );
if (!class_exists( 'JSite' ))
{
DROP TABLE IF EXISTS `#__jmnogosearch_log_searches`;
-CREATE TABLE `#_jmnogosearch_log_searches` (
+CREATE TABLE `#__jmnogosearch_log_searches` (
`search_term` varchar(128) NOT NULL default '',
`hits` int(11) unsigned NOT NULL default '0'
) DEFAULT CHARSET=utf8
</td>
<td nowrap="nowrap" align="right">
<?php if ( $this->showResults ) : ?>
- <a href="index.php?option=com_search&search_results=0"><?php echo JText::_( 'Hide Search Results' ); ?></a>
+ <a href="index.php?option=com_jmnogosearch&search_results=0"><?php echo JText::_( 'Hide Search Results' ); ?></a>
<?php else : ?>
- <a href="index.php?option=com_search&search_results=1"><?php echo JText::_( 'Show Search Results' ); ?></a>
+ <a href="index.php?option=com_jmnogosearch&search_results=1"><?php echo JText::_( 'Show Search Results' ); ?></a>
<?php endif; ?>
</td>
</tr>
</table>
</div>
- <input type="hidden" name="option" value="com_mnogosearch" />
+ <input type="hidden" name="option" value="com_jmnogosearch" />
<input type="hidden" name="task" value="" />
<input type="hidden" name="filter_order" value="<?php echo $this->lists['order']; ?>" />
<input type="hidden" name="filter_order_Dir" value="<?php echo $this->lists['order_Dir']; ?>" />
--- /dev/null
+<?php
+/**
+* @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_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.
+* See COPYRIGHT.php for copyright notices and details.
+*/
+
+// no direct access
+defined( '_JEXEC' ) or die( 'Restricted access' );
+
+jimport('joomla.application.component.view');
+
+/**
+ * @package JMnoGoSearch
+ * @subpackage JMnoGoSearch
+ * @since 1.0
+ */
+class JMnoGoSearchViewJMnoGoSearch extends JView
+{
+ function display($tpl=null)
+ {
+ global $mainframe;
+
+ JToolBarHelper::title( JText::_( 'Search Statistics' ), 'searchtext.png' );
+ JToolBarHelper::custom( 'reset', 'delete.png', 'delete_f2.png', 'Reset', false );
+ JToolBarHelper::preferences( 'com_jmnogosearch', '150' );
+ JToolBarHelper::help( 'screen.stats.searches' );
+
+ $document = & JFactory::getDocument();
+ $document->setTitle(JText::_('Search Statistics'));
+
+ $limit = $mainframe->getUserStateFromRequest( 'global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int' );
+ $limitstart = $mainframe->getUserStateFromRequest( 'com_jmnogosearch.limitstart', 'limitstart', 0, 'int' );
+
+ $model = $this->getModel();
+ $items = $model->getItems();
+ $params = &JComponentHelper::getParams( 'com_jmnogosearch' );
+ $enabled = $params->get('enabled');
+ JHTML::_('behavior.tooltip');
+ jimport('joomla.html.pagination');
+ $pageNav = new JPagination( count($items), $limitstart, $limit );
+
+ $showResults = JRequest::getInt('search_results');
+
+ $search = $mainframe->getUserStateFromRequest( 'com_jmnogosearch.search', 'search', '', 'string' );
+
+ $this->assignRef('items', $items);
+ $this->assignRef('enabled', $enabled);
+ $this->assignRef('pageNav', $pageNav);
+ $this->assignRef('search', $search );
+ $this->assignRef('lists', $model->lists );
+
+ $this->assignRef('showResults', $showResults);
+
+ parent::display($tpl);
+ }
+}
+++ /dev/null
-<?php
-/**
-* @version $Id: mod_mnogosearch.php 1 2009-12-12 02:15:55Z andreaz $
-* @package com_mnoGoSearch
-* @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
-* 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.
-* See COPYRIGHT.php for copyright notices and details.
-*/
-
-// no direct access
-defined( '_JEXEC' ) or die( 'Restricted access' );
-
-jimport('joomla.application.component.view');
-
-/**
- * @package Joomla
- * @subpackage Search
- * @since 1.5
- */
-class mnoGoSearchViewSearch extends JView
-{
- function display($tpl=null)
- {
- global $mainframe;
-
- JToolBarHelper::title( JText::_( 'Search Statistics' ), 'searchtext.png' );
- JToolBarHelper::custom( 'reset', 'delete.png', 'delete_f2.png', 'Reset', false );
- JToolBarHelper::preferences( 'com_mnogosearch', '150' );
- JToolBarHelper::help( 'screen.stats.searches' );
-
- $document = & JFactory::getDocument();
- $document->setTitle(JText::_('Search Statistics'));
-
- $limit = $mainframe->getUserStateFromRequest( 'global.list.limit', 'limit', $mainframe->getCfg('list_limit'), 'int' );
- $limitstart = $mainframe->getUserStateFromRequest( 'com_mnogosearch.limitstart', 'limitstart', 0, 'int' );
-
- $model = $this->getModel();
- $items = $model->getItems();
- $params = &JComponentHelper::getParams( 'com_mnogosearch' );
- $enabled = $params->get('enabled');
- JHTML::_('behavior.tooltip');
- jimport('joomla.html.pagination');
- $pageNav = new JPagination( count($items), $limitstart, $limit );
-
- $showResults = JRequest::getInt('search_results');
-
- $search = $mainframe->getUserStateFromRequest( 'com_mnosearch.search', 'search', '', 'string' );
-
- $this->assignRef('items', $items);
- $this->assignRef('enabled', $enabled);
- $this->assignRef('pageNav', $pageNav);
- $this->assignRef('search', $search );
- $this->assignRef('lists', $model->lists );
-
- $this->assignRef('showResults', $showResults);
-
- parent::display($tpl);
- }
-}
<administration>
<menu>JMnoGoSearch</menu>
<files folder="admin">
- <filename>admin.mnogosearch.php</filename>
+ <filename>admin.jmnogosearch.php</filename>
<filename>config.xml</filename>
<filename>controller.php</filename>
<filename>index.html</filename>
<filename>helpers/index.html</filename>
- <filename>helpers/mnogosearch.php</filename>
+ <filename>helpers/jmnogosearch.php</filename>
<filename>helpers/site.php</filename>
<filename>models/index.html</filename>
- <filename>models/mnogosearch.php</filename>
+ <filename>models/jmnogosearch.php</filename>
<filename>sql/index.html</filename>
<filename>sql/install.sql</filename>
<filename>sql/uninstall.sql</filename>
<filename>views/index.html</filename>
- <filename>views/mnogosearch/index.html</filename>
- <filename>views/mnogosearch/view.php</filename>
- <filename>views/mnogosearch/tmpl/index.html</filename>
- <filename>views/mnogosearch/tmpl/default.php</filename>
+ <filename>views/jmnogosearch/index.html</filename>
+ <filename>views/jmnogosearch/view.html.php</filename>
+ <filename>views/jmnogosearch/tmpl/index.html</filename>
+ <filename>views/jmnogosearch/tmpl/default.php</filename>
</files>
</administration>
\r
<?xml version="1.0" encoding="utf-8"?>\r
<metadata>\r
- <view title="Search">\r
+ <view title="JMnoGoSearch">\r
<message><![CDATA[TYPESEARCHDESC]]></message>\r
</view>\r
-</metadata>
\ No newline at end of file
+</metadata>
jimport( 'joomla.application.component.view');
/**
- * HTML View class for the WebLinks component
- *
* @static
- * @package Joomla
- * @subpackage Weblinks
+ * @package JMnoGoSearch
+ * @subpackage JMnoGoSearch
* @since 1.0
*/
-class mnoGoSearchViewSearch extends JView
+class JMnoGoSearchViewJMnoGoSearch extends JView
{
function display($tpl = null)
{
global $mainframe;
- require_once(JPATH_COMPONENT_ADMINISTRATOR.DS.'helpers'.DS.'mnogosearch.php' );
+ require_once(JPATH_COMPONENT_ADMINISTRATOR.DS.'helpers'.DS.'jmnogosearch.php' );
// Initialize some variables
$pathway =& $mainframe->getPathway();
<name>JMnoGoSearch</name>
<author>Andrea Zagli</author>
<creationDate>December 2009</creationDate>
- <copyright>Copyright (C) 2000 Andrea Zagli. All rights reserved.</copyright>
+ <copyright>Copyright (C) 2009 Andrea Zagli. All rights reserved.</copyright>
<license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL</license>
<authorEmail>azagli@libero.it</authorEmail>
<authorUrl>http://saetta.homelinux.org/</authorUrl>