--- /dev/null
+<?php
+/**
+* @version $Id: com_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' );
+
+require_once( JPATH_COMPONENT.DS.'controller.php' );
+
+$controller = new mnoGoSearchController();
+$controller->execute( JRequest::getCmd( 'task' ) );
+$controller->redirect();
+++ /dev/null
-<?php
-/**
-* @version $Id: com_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' );
-
-require_once( JPATH_COMPONENT.DS.'controller.php' );
-
-$controller = new mnoGoSearchController();
-$controller->execute( JRequest::getCmd( 'task' ) );
-$controller->redirect();
+++ /dev/null
-<?php
-/**
-* @version $Id: com_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' );
-
-require_once( JPATH_COMPONENT.DS.'controller.php' );
-
-$controller = new mnoGoSearchController();
-$controller->execute( JRequest::getCmd( 'task' ) );
-$controller->redirect();
--- /dev/null
+<html><body bgcolor="#FFFFFF"></body></html>
\ No newline at end of file
--- /dev/null
+<?php defined('_JEXEC') or die('Restricted access'); ?>
+
+<form action="index.php" method="post" name="adminForm">
+ <table>
+ <tr>
+ <td align="left" width="100%">
+ <?php echo JText::_( 'Filter' ); ?>:
+ <input type="text" name="search" id="search" value="<?php echo $this->escape($this->search); ?>" class="text_area" onchange="document.adminForm.submit();" />
+ <button onclick="this.form.submit();"><?php echo JText::_( 'Go' ); ?></button>
+ <button onclick="document.getElementById('search').value='';this.form.submit();"><?php echo JText::_( 'Reset' ); ?></button>
+ </td>
+ <td nowrap="nowrap">
+ <span class="componentheading"><?php echo JText::_( 'Search Logging' ); ?> :
+ <?php echo $this->enabled ? '<b><font color="green">'. JText::_( 'Enabled' ) .'</font></b>' : '<b><font color="red">'. JText::_( 'Disabled' ) .'</font></b>' ?>
+ </span>
+ </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>
+ <?php else : ?>
+ <a href="index.php?option=com_search&search_results=1"><?php echo JText::_( 'Show Search Results' ); ?></a>
+ <?php endif; ?>
+ </td>
+ </tr>
+ </table>
+
+ <div id="tablecell">
+ <table class="adminlist">
+ <thead>
+ <tr>
+ <th width="10">
+ <?php echo JText::_( 'NUM' ); ?>
+ </th>
+ <th class="title">
+ <?php echo JHTML::_('grid.sort', 'Search Text', 'search_term', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
+ </th>
+ <th nowrap="nowrap" width="20%">
+ <?php echo JHTML::_('grid.sort', 'Times Requested', 'hits', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
+ </th>
+ <?php
+ if ( $this->showResults ) : ?>
+ <th nowrap="nowrap" width="20%">
+ <?php echo JText::_( 'Results Returned' ); ?>
+ </th>
+ <?php endif; ?>
+ </tr>
+ </thead>
+ <tfoot>
+ <tr>
+ <td colspan="4">
+ <?php echo $this->pageNav->getListFooter(); ?>
+ </td>
+ </tr>
+ </tfoot>
+ <tbody>
+ <?php
+ $k = 0;
+ for ($i=0, $n = count($this->items); $i < $n; $i++) {
+ $row =& $this->items[$i];
+ ?>
+ <tr class="row<?php echo $k;?>">
+ <td align="right">
+ <?php echo $i+1+$this->pageNav->limitstart; ?>
+ </td>
+ <td>
+ <?php echo htmlspecialchars($row->search_term, ENT_QUOTES, 'UTF-8'); ?>
+ </td>
+ <td align="center">
+ <?php echo $row->hits; ?>
+ </td>
+ <?php if ( $this->showResults ) : ?>
+ <td align="center">
+ <?php echo $row->returns; ?>
+ </td>
+ <?php endif; ?>
+ </tr>
+ <?php
+ $k = 1 - $k;
+ }
+ ?>
+ </tbody>
+ </table>
+ </div>
+
+ <input type="hidden" name="option" value="com_mnogosearch" />
+ <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']; ?>" />
+</form>
--- /dev/null
+<html><body bgcolor="#FFFFFF"></body></html>
\ No newline at end of file
--- /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);
+ }
+}
+++ /dev/null
-<html><body bgcolor="#FFFFFF"></body></html>
\ No newline at end of file
+++ /dev/null
-<?php defined('_JEXEC') or die('Restricted access'); ?>
-
-<form action="index.php" method="post" name="adminForm">
- <table>
- <tr>
- <td align="left" width="100%">
- <?php echo JText::_( 'Filter' ); ?>:
- <input type="text" name="search" id="search" value="<?php echo $this->escape($this->search); ?>" class="text_area" onchange="document.adminForm.submit();" />
- <button onclick="this.form.submit();"><?php echo JText::_( 'Go' ); ?></button>
- <button onclick="document.getElementById('search').value='';this.form.submit();"><?php echo JText::_( 'Reset' ); ?></button>
- </td>
- <td nowrap="nowrap">
- <span class="componentheading"><?php echo JText::_( 'Search Logging' ); ?> :
- <?php echo $this->enabled ? '<b><font color="green">'. JText::_( 'Enabled' ) .'</font></b>' : '<b><font color="red">'. JText::_( 'Disabled' ) .'</font></b>' ?>
- </span>
- </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>
- <?php else : ?>
- <a href="index.php?option=com_search&search_results=1"><?php echo JText::_( 'Show Search Results' ); ?></a>
- <?php endif; ?>
- </td>
- </tr>
- </table>
-
- <div id="tablecell">
- <table class="adminlist">
- <thead>
- <tr>
- <th width="10">
- <?php echo JText::_( 'NUM' ); ?>
- </th>
- <th class="title">
- <?php echo JHTML::_('grid.sort', 'Search Text', 'search_term', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
- </th>
- <th nowrap="nowrap" width="20%">
- <?php echo JHTML::_('grid.sort', 'Times Requested', 'hits', @$this->lists['order_Dir'], @$this->lists['order'] ); ?>
- </th>
- <?php
- if ( $this->showResults ) : ?>
- <th nowrap="nowrap" width="20%">
- <?php echo JText::_( 'Results Returned' ); ?>
- </th>
- <?php endif; ?>
- </tr>
- </thead>
- <tfoot>
- <tr>
- <td colspan="4">
- <?php echo $this->pageNav->getListFooter(); ?>
- </td>
- </tr>
- </tfoot>
- <tbody>
- <?php
- $k = 0;
- for ($i=0, $n = count($this->items); $i < $n; $i++) {
- $row =& $this->items[$i];
- ?>
- <tr class="row<?php echo $k;?>">
- <td align="right">
- <?php echo $i+1+$this->pageNav->limitstart; ?>
- </td>
- <td>
- <?php echo htmlspecialchars($row->search_term, ENT_QUOTES, 'UTF-8'); ?>
- </td>
- <td align="center">
- <?php echo $row->hits; ?>
- </td>
- <?php if ( $this->showResults ) : ?>
- <td align="center">
- <?php echo $row->returns; ?>
- </td>
- <?php endif; ?>
- </tr>
- <?php
- $k = 1 - $k;
- }
- ?>
- </tbody>
- </table>
- </div>
-
- <input type="hidden" name="option" value="com_mnogosearch" />
- <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']; ?>" />
-</form>
+++ /dev/null
-<html><body bgcolor="#FFFFFF"></body></html>
\ No newline at end of file
+++ /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);
- }
-}
<author>Andrea Zagli</author>\r
<creationDate>December 2009</creationDate>\r
<copyright>Copyright (C) 2009 Andrea Zagli. All rights reserved.</copyright>\r
- <license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>\r
+ <license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL</license>\r
<authorEmail>azagli@libero.it</authorEmail>\r
<authorUrl>http://saetta.homelinux.org/</authorUrl>\r
<version>1.0.0</version>\r
<administration>
<menu>jmnoGoSearch</menu>
<files folder="admin">
- <filename></filename>
+ <filename>admin.mnogosearch.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/site.php</filename>
+ <filename>models/index.html</filename>
+ <filename>models/mnogosearch.php</filename>
+ <filename>sql/index.html</filename>
+ <filename>sql/indstall.sql</filename>
+ <filename>sql/uninstall.sql</filename>
+ <filename>helpers/index.html</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>
</files>
</administration>
\r
<author>Andrea Zagli</author>
<creationDate>December 2009</creationDate>
<copyright>Copyright (C) 2000 Andrea Zagli. All rights reserved.</copyright>
- <license>http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL</license>
+ <license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL</license>
<authorEmail>azagli@libero.it</authorEmail>
<authorUrl>http://saetta.homelinux.org/</authorUrl>
<version>1.0.0</version>
<description>This module will display a search box that is linked with the mnoGoSearch web search engine.</description>
+
<files>
<filename module="mod_mnogosearch">mod_mnogosearch.php</filename>
</files>
+
<params>
<param name="moduleclass_sfx" type="text" default="" label="Module Class Suffix" description="PARAMMODULECLASSSUFFIX" />
<param name="@spacer" type="spacer" default="" label="" description="" />