From 7d294873ca1b9705652592523210f543e73ec1e1 Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Mon, 17 Oct 2011 22:26:06 +0000 Subject: added modems category - michael issue --- .../Application/Controllers/DownloadController.php | 12 +- .../Application/Controllers/ModemsController.php | 129 +++++++++++++++++++++ .../Controllers/SdcardreadersController.php | 2 +- h-source/Application/Include/hardware.php | 15 ++- h-source/Application/Include/languages.php | 16 ++- h-source/Application/Models/ModemsModel.php | 70 +++++++++++ h-source/Application/Views/Download/index.php | 4 + h-source/Application/Views/Hardware/left.php | 4 + h-source/Application/Views/Modems/catalogue.php | 89 ++++++++++++++ 9 files changed, 333 insertions(+), 8 deletions(-) create mode 100644 h-source/Application/Controllers/ModemsController.php create mode 100644 h-source/Application/Models/ModemsModel.php create mode 100644 h-source/Application/Views/Modems/catalogue.php (limited to 'h-source/Application') diff --git a/h-source/Application/Controllers/DownloadController.php b/h-source/Application/Controllers/DownloadController.php index bc433c4..8767f6b 100644 --- a/h-source/Application/Controllers/DownloadController.php +++ b/h-source/Application/Controllers/DownloadController.php @@ -136,7 +136,7 @@ class DownloadController extends BaseController $xml .= "\t\t".$row['hardware']['video_card_works']."\n"; } - if ($type === 'acquisition-card') + if ($type === 'acquisition-card' or $type === 'modem') { $xml .= "\t\t".$row['hardware']['compatibility']."\n"; } @@ -163,8 +163,8 @@ class DownloadController extends BaseController $xml .= "\t\t\n"; - $xml .= "\t\t".$this->baseUrl."/".MyStrings::$reverse[$type]."/view/".$this->lang."/".$row['hardware']['id_hard']."/".encodeUrl($row['hardware']['model'])."\n"; - $xml .= "\t\t".$this->baseUrl."/".MyStrings::$reverse[$type]."/history/".$this->lang."/".$row['hardware']['id_hard']."\n"; + $xml .= "\t\t".$this->baseUrl."/".Hardware::getControllerFromType($type)."/view/".$this->lang."/".$row['hardware']['id_hard']."/".encodeUrl($row['hardware']['model'])."\n"; + $xml .= "\t\t".$this->baseUrl."/".Hardware::getControllerFromType($type)."/history/".$this->lang."/".$row['hardware']['id_hard']."\n"; $xml .= "\t\n"; } @@ -256,4 +256,10 @@ class DownloadController extends BaseController { $this->printXml($lang, array('type'=>'sd-card-reader','-deleted'=>'no')); } + + public function modems($lang = 'en') + { + $this->printXml($lang, array('type'=>'modem','-deleted'=>'no')); + } + } \ No newline at end of file diff --git a/h-source/Application/Controllers/ModemsController.php b/h-source/Application/Controllers/ModemsController.php new file mode 100644 index 0000000..35d555c --- /dev/null +++ b/h-source/Application/Controllers/ModemsController.php @@ -0,0 +1,129 @@ +. + +if (!defined('EG')) die('Direct access not allowed!'); + +class ModemsController extends GenericController +{ + + public function __construct($model, $controller, $queryString) + { + + $this->_topMenuClasses['hardware'] = " class='currentitem'"; + + $worksOptions = Modems::$select; + $worksField = 'compatibility'; + $interfaceOptions = Modems::$interface; + + parent::__construct($model, $controller, $queryString); + + //load the model + $this->model('HardwareModel'); + $this->model('RevisionsModel'); + $this->model('ModemsModel'); + $this->model('TalkModel'); + + $this->mod = $this->m['ModemsModel']; + + $this->m['HardwareModel']->id_user = $this->s['registered']->status['id_user']; + $this->m['HardwareModel']->type = 'modem'; + + $this->m['HardwareModel']->setConditions($worksOptions,$worksField,$interfaceOptions); + + $this->m['HardwareModel']->setFields('model,kernel,description,distribution,comm_year,compatibility,pci_id,interface,driver,other_names','sanitizeAll'); + + $argKeys = array( + 'page:forceNat' => 1, + 'history_page:forceNat' => 1, + 'vendor:sanitizeString' => 'undef', + 'comm_year:sanitizeString' => 'undef', + 'compatibility:sanitizeString' => 'undef', + 'interface:sanitizeString' => 'undef', + 'sort-by:sanitizeString' => 'undef' + ); + + $this->setArgKeys($argKeys); + + $data['title'] = 'Modems'; + + $data['intefaceOptions'] = $interfaceOptions; + $data['worksOptions'] = $worksOptions; + $data['worksField'] = $worksField; + $this->append($data); + } + + public function catalogue($lang = 'en') + { + $this->shift(1); + + $whereArray = array( + 'type' => $this->mod->type, + 'vendor' => $this->viewArgs['vendor'], + 'comm_year' => $this->viewArgs['comm_year'], + 'compatibility' => $this->viewArgs['compatibility'], + 'interface' => $this->viewArgs['interface'], + ); + + $this->mod->setWhereQueryClause($whereArray); + + parent::catalogue($lang); + } + + public function view($lang = 'en', $id = 0, $name = null) + { + parent::view($lang, $id, $name); + } + + public function history($lang = 'en', $id = 0) + { + parent::history($lang, $id); + } + + public function revision($lang = 'en', $id_rev = 0) + { + parent::revision($lang, $id_rev); + } + + public function insert($lang = 'en', $token = '') + { + parent::insert($lang, $token); + } + + public function update($lang = 'en', $token = '') + { + parent::update($lang, $token); + } + + public function differences($lang = 'en', $id_hard = 0, $id_rev = 0) + { + parent::differences($lang, $id_hard, $id_rev); + } + + public function climb($lang = 'en', $id_rev = 0, $token = '') + { + parent::climb($lang, $id_rev, $token); + } + + public function talk($lang = 'en', $id_hard = 0, $token = '') + { + parent::talk($lang, $id_hard, $token); + } + +} \ No newline at end of file diff --git a/h-source/Application/Controllers/SdcardreadersController.php b/h-source/Application/Controllers/SdcardreadersController.php index 6d7b719..c3f580a 100644 --- a/h-source/Application/Controllers/SdcardreadersController.php +++ b/h-source/Application/Controllers/SdcardreadersController.php @@ -61,7 +61,7 @@ class SdcardreadersController extends GenericController $this->setArgKeys($argKeys); - $data['title'] = 'Bluetooth'; + $data['title'] = 'SD card readers'; $data['intefaceOptions'] = $interfaceOptions; $data['worksOptions'] = $worksOptions; diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php index 91a66be..8248316 100644 --- a/h-source/Application/Include/hardware.php +++ b/h-source/Application/Include/hardware.php @@ -42,8 +42,6 @@ class Hardware return $string; } - public static $controllers = array('notebooks','wifi','videocards','printers','scanners','threegcards','soundcards','webcams','bluetooth','acquisitioncards','fingerprintreaders','ethernetcards','sdcardreaders'); //used by UsersController::login() - //classId => controller public static $deviceClasses = array( '0403' => 'soundcards', @@ -69,7 +67,8 @@ class Hardware 'acquisition-card' => 'Crystal/cam_mount-22.png', 'fingerprint-reader' => 'fingerprint_icon-22.png', 'ethernet-card' => 'H2O/network-wired_22.png', - 'sd-card-reader' => 'H2O/media-flash-sd-mmc_22.png', + 'sd-card-reader' => 'H2O/media-flash-sd-mmc_22.png', + 'modem' => 'Crystal/modem_22.png', ); public static $typeToController = array( @@ -86,6 +85,7 @@ class Hardware 'fingerprint-reader' => 'fingerprintreaders', 'ethernet-card' => 'ethernetcards', 'sd-card-reader' => 'sdcardreaders', + 'modem' => 'modems', ); public static function getTypes() @@ -427,4 +427,13 @@ class Sdcardreaders extends Hardware public static $interface = "not-specified,USB,PCI,PCI-E,mini-PCI,mini-PCI-E,ExpressCard,PC-Card,Firewire,Parallel,Serial"; +} + +class Modems extends Hardware +{ + + public static $select = 'yes,no'; + + public static $interface = "not-specified,USB,PCI,PCI-E,mini-PCI,mini-PCI-E,ExpressCard,PC-Card,Firewire,Parallel,Serial"; + } \ No newline at end of file diff --git a/h-source/Application/Include/languages.php b/h-source/Application/Include/languages.php index a4c4254..ad67f4d 100644 --- a/h-source/Application/Include/languages.php +++ b/h-source/Application/Include/languages.php @@ -312,7 +312,10 @@ class Lang /*0264*/"This issue is closed" => "Questa questione è stata chiusa", /*0265*/"This issue is opened" => "Questa questione è aperta", /*0266*/"does it adopt any techniques to track users?" => "adotta qualche tecnica per tracciare gli utenti?", - /*0267*/"Actions carried out by users" => "Azioni compiute dagli utenti" + /*0267*/"Actions carried out by users" => "Azioni compiute dagli utenti", + /*0268*/"No modems found" => "Non è stato trovato alcun modem", + /*0269*/"Download the xml file of all the modems in the database" => "Scarica il file xml di tutti i modem presenti nel database", + /*0270*/"Modems and ADSL cards" => "Modem e schede ADSL", ), 'es' => array ( @@ -1046,6 +1049,7 @@ class Lang 'fingerprintreaders' => 'fingerprint reader', 'ethernetcards' => 'ethernet card', 'sdcardreaders' => 'sd card reader', + 'modems' => 'modem', ), 'it' => array( 'notebooks' => 'notebook', @@ -1061,6 +1065,7 @@ class Lang 'fingerprintreaders' => 'lettore di impronte digitali', 'ethernetcards' => 'scheda ethernet', 'sdcardreaders' => 'lettore di schede sd', + 'modems' => 'modem', ), 'es' => array( 'notebooks' => 'portátil', @@ -1076,6 +1081,7 @@ class Lang 'fingerprintreaders' => 'lector de huella digital', 'ethernetcards' => 'tarjeta de ethernet', 'sdcardreaders' => 'lector de tarjetas sd', + 'modems' => 'modem', ), 'fr' => array( 'notebooks' => 'notebook', @@ -1091,6 +1097,7 @@ class Lang 'fingerprintreaders' => 'lecteur d\'empreintes digitales', 'ethernetcards' => 'carte ethernet', 'sdcardreaders' => 'sd card reader', + 'modems' => 'modem', ), 'de' => array( 'notebooks' => 'notebook', @@ -1106,6 +1113,7 @@ class Lang 'fingerprintreaders' => 'fingerprint reader', 'ethernetcards' => 'ethernet card', 'sdcardreaders' => 'sd card reader', + 'modems' => 'modem', ), ); @@ -1124,6 +1132,7 @@ class Lang 'fingerprintreaders' => 'fingerprint readers', 'ethernetcards' => 'ethernet cards', 'sdcardreaders' => 'sd card readers', + 'modems' => 'modems', ), 'it' => array( 'notebooks' => 'notebook', @@ -1139,6 +1148,7 @@ class Lang 'fingerprintreaders' => 'lettori di impronte digitali', 'ethernetcards' => 'schede ethernet', 'sdcardreaders' => 'lettori di schede sd', + 'modems' => 'modem', ), 'es' => array( 'notebooks' => 'portátiles', @@ -1154,6 +1164,7 @@ class Lang 'fingerprintreaders' => 'lectores de huella digital', 'ethernetcards' => 'tarjetas de ethernet', 'sdcardreaders' => 'lectores de tarjetas sd', + 'modems' => 'modems', ), 'fr' => array( 'notebooks' => 'notebooks', @@ -1169,6 +1180,7 @@ class Lang 'fingerprintreaders' => 'lecteurs d\'empreintes digitales ', 'ethernetcards' => 'cartes ethernet', 'sdcardreaders' => 'sd card readers', + 'modems' => 'modems', ), 'de' => array( 'notebooks' => 'notebooks', @@ -1184,6 +1196,7 @@ class Lang 'fingerprintreaders' => 'fingerprint readers', 'ethernetcards' => 'ethernet cards', 'sdcardreaders' => 'sd card readers', + 'modems' => 'modems', ), ); @@ -1238,6 +1251,7 @@ class MyStrings 'fingerprint-reader' => 'fingerprintreaders', 'ethernet-card' => 'ethernetcards', 'sd-card-reader' => 'sdcardreaders', + 'modem' => 'modems', ); public static function getTypes() diff --git a/h-source/Application/Models/ModemsModel.php b/h-source/Application/Models/ModemsModel.php new file mode 100644 index 0000000..5417524 --- /dev/null +++ b/h-source/Application/Models/ModemsModel.php @@ -0,0 +1,70 @@ +. + +if (!defined('EG')) die('Direct access not allowed!'); + +class ModemsModel extends GenericModel +{ + + public $type = 'modem'; //device type + + public function __construct() + { + + $this->_popupItemNames = array( + 'vendor' => 'vendor', + 'comm_year' => 'comm_year', + 'compatibility' => 'compatibility', + 'interface' => 'interface', + ); + + $this->_popupLabels = array( + 'vendor' => gtext("vendor"), + 'comm_year' => gtext("year"), + 'compatibility' => gtext("does it work?"), + 'interface' => gtext("interface"), + ); + + $this->_popupFunctions = array( + 'vendor' => 'betterVendor', + ); + + $this->createPopupWhere('vendor,compatibility,comm_year,interface'); + + $this->diffFields = array( + 'vendor' => gtext("vendor"), + 'model' => gtext('model name'), + 'other_names' => gtext('possible other names of the device'), + 'pci_id' => gtext("VendorID:ProductID code of the device"), + 'comm_year' => gtext('year of commercialization'), + 'interface' => gtext("interface"), + 'distribution' => gtext('GNU/Linux distribution used for the test'), + 'kernel' => gtext('tested with the following kernel libre'), + 'compatibility' => gtext("does it work with free software?"), + 'driver' => gtext("free driver used"), + 'description' => gtext('Description'), + ); + + $this->fieldsWithBreaks = array(gtext('Description'),gtext('possible other names of the device')); + + parent::__construct(); + } + +} \ No newline at end of file diff --git a/h-source/Application/Views/Download/index.php b/h-source/Application/Views/Download/index.php index 039dc5b..1275d63 100644 --- a/h-source/Application/Views/Download/index.php +++ b/h-source/Application/Views/Download/index.php @@ -93,6 +93,10 @@ SD card readers in the database");?> "> + + modems in the database");?> + "> + diff --git a/h-source/Application/Views/Hardware/left.php b/h-source/Application/Views/Hardware/left.php index a0afa78..ece6e32 100644 --- a/h-source/Application/Views/Hardware/left.php +++ b/h-source/Application/Views/Hardware/left.php @@ -77,4 +77,8 @@
+ +
+ +
\ No newline at end of file diff --git a/h-source/Application/Views/Modems/catalogue.php b/h-source/Application/Views/Modems/catalogue.php new file mode 100644 index 0000000..9ac0e44 --- /dev/null +++ b/h-source/Application/Views/Modems/catalogue.php @@ -0,0 +1,89 @@ + + +. +?> + +
+
+ +
+
+
viewArgs['vendor'])?>
+
viewArgs['comm_year']?>
+
viewArgs['compatibility']?>
+
viewArgs['interface']?>
+
viewArgs['sort-by']?>
+
+
+ + + +
+ .. +
+ + + + +
+ +
+ : +
+ + +
+
:
+
+
+ + +
+
:
+
+
+ +
+
:
+
+
+ +
+
:
+
+
+ +
+
+
+
+ + + +
+ + + +
+ : +
+ \ No newline at end of file -- cgit v1.2.3