From: Andrea Zagli Date: Sat, 2 Jan 2010 15:31:15 +0000 (+0100) Subject: Added ordering results feature. X-Git-Url: https://saetta.ns0.it/gitweb?a=commitdiff_plain;h=aea1dab27968a23eae078d5fdaa759dff26f7827;p=joomla%2Fjmnogosearch Added ordering results feature. --- diff --git a/com_jmnogosearch/site/models/jmnogosearch.php b/com_jmnogosearch/site/models/jmnogosearch.php index 8c2dd21..7123538 100644 --- a/com_jmnogosearch/site/models/jmnogosearch.php +++ b/com_jmnogosearch/site/models/jmnogosearch.php @@ -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);