...
|
...
|
@@ -273,9 +273,8 @@ class HelperSearch |
|
|
|
|
|
public static function groupSort($sort)
|
|
|
{
|
|
|
|
|
|
$options = self::$options;
|
|
|
if (isset($options['controller']) && $options['controller'] != 'Search') {
|
|
|
if (isset($options['controller']) && $options['controller'] == 'Search') {
|
|
|
return array();
|
|
|
}
|
|
|
//设置导航
|
...
|
...
|
@@ -319,7 +318,7 @@ class HelperSearch |
|
|
}
|
|
|
}
|
|
|
$result['list'] = $sortList;
|
|
|
|
|
|
|
|
|
return $result;
|
|
|
}
|
|
|
|
...
|
...
|
@@ -327,7 +326,7 @@ class HelperSearch |
|
|
{
|
|
|
$result = array();
|
|
|
$options = self::$options;
|
|
|
if (!isset($options['controller']) || $options['controller'] != 'Search') {
|
|
|
if (!isset($options['controller']) || $options['controller'] == 'Search') {
|
|
|
return $result;
|
|
|
}
|
|
|
$params = self::$params;
|
...
|
...
|
|