aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Controllers/GenericController.php
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Controllers/GenericController.php')
-rw-r--r--h-source/Application/Controllers/GenericController.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/h-source/Application/Controllers/GenericController.php b/h-source/Application/Controllers/GenericController.php
index 5c96b76..49685f3 100644
--- a/h-source/Application/Controllers/GenericController.php
+++ b/h-source/Application/Controllers/GenericController.php
@@ -36,22 +36,22 @@ class GenericController extends BaseController
$popup->name = gtext('sort by');
switch ($this->controller)
{
- case 'wifi':
- $popup->itemsName = array('last inserted','alphabetically','alphabetically desc');
- $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc');
- break;
- case 'videocards':
- $popup->itemsName = array('last inserted','alphabetically','alphabetically desc');
- $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc');
+ case 'printers':
+ $popup->itemsName = array('last inserted','alphabetically','alphabetically desc','compatibility');
+ $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc','compatibility');
break;
- case 'soundcards':
- $popup->itemsName = array('last inserted','alphabetically','alphabetically desc');
- $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc');
+ case 'notebooks':
+ $popup->itemsName = array('last inserted','alphabetically','alphabetically desc','compatibility');
+ $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc','compatibility');
break;
- default:
+ case 'scanners':
$popup->itemsName = array('last inserted','alphabetically','alphabetically desc','compatibility');
$popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc','compatibility');
break;
+ default:
+ $popup->itemsName = array('last inserted','alphabetically','alphabetically desc');
+ $popup->itemsValue = array('last-inserted','alphabetically','alphabetically-desc');
+ break;
}
$this->orderPopup = $popup;