From aea1dab27968a23eae078d5fdaa759dff26f7827 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Sat, 2 Jan 2010 16:31:15 +0100 Subject: [PATCH] Added ordering results feature. --- com_jmnogosearch/site/models/jmnogosearch.php | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) 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); -- 2.49.0