]> saetta.ns0.it Git - joomla/jmnogosearch/commitdiff
Added ordering results feature. master
authorAndrea Zagli <azagli@libero.it>
Sat, 2 Jan 2010 15:31:15 +0000 (16:31 +0100)
committerAndrea Zagli <azagli@libero.it>
Sat, 2 Jan 2010 15:31:15 +0000 (16:31 +0100)
com_jmnogosearch/site/models/jmnogosearch.php

index 8c2dd21ed4826d47304e96c1d271422bc96f527f..7123538c3f0682a6c1f48e98adeccd47a8d47205 100644 (file)
@@ -116,12 +116,6 @@ class JMnoGoSearchModelJMnoGoSearch extends JModel
                                $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') {
@@ -137,6 +131,17 @@ class JMnoGoSearchModelJMnoGoSearch extends JModel
                                $npage = $limitstart / $limit;
                                udm_set_agent_param ($this->_agent, UDM_PARAM_PAGE_NUM, $npage);
 
+                               if ($ordering == 'relevancy') {
+                                       udm_set_agent_param_ex ($this->_agent, 's', 'RDS');
+                               } else if ($ordering == 'newest') {
+                                       udm_set_agent_param_ex ($this->_agent, 's', 'DRS');
+                               } else if ($ordering == 'older') {
+                                       udm_set_agent_param_ex ($this->_agent, 's', 'dRS');
+                               } else if ($ordering == 'title') {
+                                       udm_set_agent_param_ex ($this->_agent, 's', 'SRD');
+                                       udm_set_agent_param_ex ($this->_agent, 'su', 'title');
+                               }
+
                                $mResult = udm_find ($this->_agent, $keyword);
 
                                $this->_total = udm_get_res_param ($mResult, UDM_PARAM_FOUND);