]> saetta.ns0.it Git - joomla/jmnogosearch/commitdiff
Bugfixes. Pagination. Some search parameters.
authorAndrea Zagli <azagli@libero.it>
Sat, 2 Jan 2010 14:17:17 +0000 (15:17 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 2 Jan 2010 14:17:17 +0000 (15:17 +0100)
com_jmnogosearch/admin/en-GB.com_jmnogosearch.ini [new file with mode: 0755]
com_jmnogosearch/site/en-GB.com_jmnogosearch.ini [new file with mode: 0755]
com_jmnogosearch/site/models/jmnogosearch.php
com_jmnogosearch/site/views/jmnogosearch/tmpl/default_form.php
com_jmnogosearch/site/views/jmnogosearch/tmpl/default_results.php
com_jmnogosearch/site/views/jmnogosearch/view.html.php

diff --git a/com_jmnogosearch/admin/en-GB.com_jmnogosearch.ini b/com_jmnogosearch/admin/en-GB.com_jmnogosearch.ini
new file mode 100755 (executable)
index 0000000..3d1b435
--- /dev/null
@@ -0,0 +1,19 @@
+# $Id: en-GB.com_search.ini 10388 2008-06-03 11:16:20Z pasamio $
+# Joomla! Project
+# Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
+# License http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
+# Note : All ini files need to be saved as UTF-8 - No BOM
+
+DESCSEARCH=This Component manages the Search functionality.
+GATHER SEARCH STATISTICS=Gather Search Statistics
+HIDE SEARCH RESULTS=Hide Search Results
+RESULTS RETURNED=Results Returned
+SEARCH LOGGING=Search Logging
+SEARCH STATISTICS=Search Statistics
+SEARCH TEXT=Search Text
+SHOW CREATED DATE=Show Created Date
+SHOW SEARCH RESULTS=Show Search Results
+STANDARD SEARCH FORM=Standard Search Form
+STANDARD SEARCH LAYOUT DESC=The standard Search layout displays the Search Form and result.
+TIMES REQUESTED=Times Requested
+TIPSEARCHSTATISTICS=Enable/Disable collection of site statistics
\ No newline at end of file
diff --git a/com_jmnogosearch/site/en-GB.com_jmnogosearch.ini b/com_jmnogosearch/site/en-GB.com_jmnogosearch.ini
new file mode 100755 (executable)
index 0000000..718e104
--- /dev/null
@@ -0,0 +1,27 @@
+# $Id: en-GB.com_search.ini 10498 2008-07-04 00:05:36Z ian $
+# author Joomla! Project
+# Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
+# license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
+
+# Note : All ini files need to be saved as UTF-8
+
+ALL WORDS=All words
+ALPHABETICAL=Alphabetical
+ANY WORDS=Any words
+DISPLAY NUM=Display #
+EXACT PHRASE=Exact Phrase
+IGNOREKEYWORD=One or more common words were ignored in the search.
+RELEVANCY=Relevancy
+NEWEST FIRST=Newest First
+NO RESULTS WERE FOUND=No results were found.
+OLDEST FIRST=Oldest First
+ORDERING=Ordering
+SEARCH=Search
+SEARCH KEYWORD=Search Keyword
+SEARCH_MESSAGE=Search term must be a minimum of 3 characters and a maximum of 20 characters.
+SEARCH ONLY=Search Only
+TOTALRESULTSFOUND=Total: %s results found.
+WITH=with
+SEARCH_AGAIN=Search Again
+SEARCH_RESULT=Search Result
+SEARCH PARAMETERS=Search Parameters
index 4e4abbfb51b56caa1be99fc94f0e893abfeffbae..8c2dd21ed4826d47304e96c1d271422bc96f527f 100644 (file)
@@ -69,7 +69,7 @@ class JMnoGoSearchModelJMnoGoSearch extends JModel
                // Set the search parameters
                $keyword = urldecode(JRequest::getString('searchword'));
                $match = JRequest::getWord('searchphrase', 'all');
-               $ordering = JRequest::getWord('ordering', 'newest');
+               $ordering = JRequest::getWord('ordering', 'relevancy');
                $this->setSearch($keyword, $match, $ordering);
        }
 
@@ -113,14 +113,33 @@ class JMnoGoSearchModelJMnoGoSearch extends JModel
                        $keyword = $this->getState('keyword');
                        if (trim($keyword) != '')
                        {
+                               $ordering = $this->getState('ordering');
+                               $match = $this->getState('match');
+
+                               if ($ordering == 'relevancy') {
+                               } else if ($ordering == 'newest') {
+                               } else if ($ordering == 'older') {
+                               } else if ($ordering == 'title') {
+                               }
+
+                               if ($match == 'all') {
+                                       udm_set_agent_param ($this->_agent, UDM_PARAM_SEARCH_MODE, UDM_MODE_ALL);
+                               } else if ($match == 'any') {
+                                       udm_set_agent_param ($this->_agent, UDM_PARAM_SEARCH_MODE, UDM_MODE_ANY);
+                               } else if ($match == 'exact') {
+                                       udm_set_agent_param ($this->_agent, UDM_PARAM_SEARCH_MODE, UDM_MODE_PHRASE);
+                               }
+
+                               $limit = $this->getState('limit');
+                               $limitstart = $this->getState('limitstart');
+                               udm_set_agent_param ($this->_agent, UDM_PARAM_PAGE_SIZE, $limit);
+
+                               $npage = $limitstart / $limit;
+                               udm_set_agent_param ($this->_agent, UDM_PARAM_PAGE_NUM, $npage);
+
                                $mResult = udm_find ($this->_agent, $keyword);
 
                                $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'));
-                               } else {
-                                       $this->_data = $rows;
-                               }*/
                                $this->_data = $mResult;
                        } else {
                                $this->_total = 0;
index 4eab7cefc5b4eb4919af0de73f3c34a5b73ebc81..7a53507d079ae42358ad9a0ba5083fa740897179 100644 (file)
                <label for="limit">
                        <?php echo JText::_( 'Display Num' ); ?>
                </label>
-               <?php //echo $this->pagination->getLimitBox( ); ?>
+               <?php echo $this->pagination->getLimitBox( ); ?>
        </div>
        <div>
-               <?php //echo $this->pagination->getPagesCounter(); ?>
+               <?php echo $this->pagination->getPagesCounter(); ?>
        </div>
 </div>
 <?php endif; ?>
index dd3eff0ec219e726327ef5c8de770b921ff40c31..7cba39f7e2e596af1e2b26dba2bfdc1f59a9d842 100644 (file)
@@ -4,11 +4,12 @@
        <tr>
                <td>
                <?php
+               if ($this->total > 0) {
                foreach( $this->results as $result ) : ?>
                        <fieldset>
                                <div>
                                        <span class="small<?php echo $this->escape($this->params->get('pageclass_sfx')); ?>">
-                                               <?php echo $this->pagination->limitstart + $result->count.'. ';?>
+                                               <?php echo $result->count.'. ';?>
                                        </span>
                                        <?php if ( $result->href ) :
                                                if ($result->browsernav == 1 ) : ?>
                                </div>
                                <?php endif; ?>
                        </fieldset>
-               <?php endforeach; ?>
+               <?php endforeach;
+                       }
+               ?>
                </td>
        </tr>
        <tr>
                <td colspan="3">
                        <div align="center">
-                               <?php //echo $this->pagination->getPagesLinks( ); ?>
+                               <?php echo $this->pagination->getPagesLinks( ); ?>
                        </div>
                </td>
        </tr>
index e2771b7fa492a7bf623dfc377776256d44052a74..8ed961decc4e867a5ea44f592b39007be44084e3 100644 (file)
@@ -108,15 +108,16 @@ class JMnoGoSearchViewJMnoGoSearch extends JView
 
                        $results = &$this->get('data');
                        $total = &$this->get('total');
-                       //$pagination = &$this->get('pagination');
+                       $pagination = &$this->get('pagination');
 
                        require_once (JPATH_SITE.DS.'components'.DS.'com_content'.DS.'helpers'.DS.'route.php');
 
-                       if ($results != null)
+                       if ($total > 0)
                        {
                                $firstRow = udm_get_res_param ($results, UDM_PARAM_FIRST_DOC);
                                $lastRow = udm_get_res_param ($results, UDM_PARAM_LAST_DOC);
-                               for ($i = $firstRow - 1; $i < $lastRow; $i++)
+                               $rows = $lastRow - $firstRow + 1;
+                               for ($i = 0; $i < $rows; $i++)
                                {
                                        $row = new stdClass();
                                        $row->text = udm_get_res_field ($results, $i, UDM_FIELD_TEXT);