From de51b631a7cc29c2bb7b1a97c71edf86ba53e58a Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Fri, 13 May 2011 15:14:24 +0000 Subject: h-source:improved the way forms are managed - part 2, improved help pages --- h-source/Application/Controllers/AcquisitioncardsController.php | 4 ++++ h-source/Application/Controllers/BluetoothController.php | 4 ++++ h-source/Application/Controllers/FingerprintreadersController.php | 4 ++++ h-source/Application/Controllers/PrintersController.php | 4 ++++ h-source/Application/Controllers/ScannersController.php | 4 ++++ h-source/Application/Controllers/WebcamsController.php | 4 ++++ 6 files changed, 24 insertions(+) (limited to 'h-source/Application/Controllers') diff --git a/h-source/Application/Controllers/AcquisitioncardsController.php b/h-source/Application/Controllers/AcquisitioncardsController.php index 6979b0e..0a4090a 100644 --- a/h-source/Application/Controllers/AcquisitioncardsController.php +++ b/h-source/Application/Controllers/AcquisitioncardsController.php @@ -97,6 +97,10 @@ class AcquisitioncardsController extends GenericController $this->setArgKeys($argKeys); $data['title'] = 'Acquisition cards'; + + $data['intefaceOptions'] = Acquisitioncards::$interface; + $data['worksOptions'] = Acquisitioncards::$select; + $data['worksField'] = 'compatibility'; $this->append($data); } diff --git a/h-source/Application/Controllers/BluetoothController.php b/h-source/Application/Controllers/BluetoothController.php index 134edff..b452f61 100644 --- a/h-source/Application/Controllers/BluetoothController.php +++ b/h-source/Application/Controllers/BluetoothController.php @@ -97,6 +97,10 @@ class BluetoothController extends GenericController $this->setArgKeys($argKeys); $data['title'] = 'Bluetooth'; + + $data['intefaceOptions'] = Bluetooth::$interface; + $data['worksOptions'] = Bluetooth::$select; + $data['worksField'] = 'bluetooth_works'; $this->append($data); } diff --git a/h-source/Application/Controllers/FingerprintreadersController.php b/h-source/Application/Controllers/FingerprintreadersController.php index a1d264f..6b34fe1 100644 --- a/h-source/Application/Controllers/FingerprintreadersController.php +++ b/h-source/Application/Controllers/FingerprintreadersController.php @@ -97,6 +97,10 @@ class FingerprintreadersController extends GenericController $this->setArgKeys($argKeys); $data['title'] = 'Fingerprint reader'; + + $data['intefaceOptions'] = Fingerprintreaders::$interface; + $data['worksOptions'] = Fingerprintreaders::$select; + $data['worksField'] = 'fingerprint_works'; $this->append($data); } diff --git a/h-source/Application/Controllers/PrintersController.php b/h-source/Application/Controllers/PrintersController.php index 4a0b29e..06a0f93 100644 --- a/h-source/Application/Controllers/PrintersController.php +++ b/h-source/Application/Controllers/PrintersController.php @@ -99,6 +99,10 @@ class PrintersController extends GenericController $this->setArgKeys($argKeys); $data['title'] = 'printers'; + + $data['intefaceOptions'] = Printer::$interface; + $data['worksOptions'] = Printer::$compatibility; + $data['worksField'] = 'compatibility'; $this->append($data); } diff --git a/h-source/Application/Controllers/ScannersController.php b/h-source/Application/Controllers/ScannersController.php index bbdd350..24cd332 100644 --- a/h-source/Application/Controllers/ScannersController.php +++ b/h-source/Application/Controllers/ScannersController.php @@ -97,6 +97,10 @@ class ScannersController extends GenericController $this->setArgKeys($argKeys); $data['title'] = 'scanners'; + + $data['intefaceOptions'] = Printer::$interface; + $data['worksOptions'] = Printer::$compatibility; + $data['worksField'] = 'compatibility'; $this->append($data); } diff --git a/h-source/Application/Controllers/WebcamsController.php b/h-source/Application/Controllers/WebcamsController.php index 6d91eb2..562cc58 100644 --- a/h-source/Application/Controllers/WebcamsController.php +++ b/h-source/Application/Controllers/WebcamsController.php @@ -97,6 +97,10 @@ class WebcamsController extends GenericController $this->setArgKeys($argKeys); $data['title'] = 'Webcam'; + + $data['intefaceOptions'] = Webcams::$interface; + $data['worksOptions'] = Webcams::$select; + $data['worksField'] = 'webcam_works'; $this->append($data); } -- cgit v1.2.3