diff options
| author | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-13 15:14:24 +0000 | 
|---|---|---|
| committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-13 15:14:24 +0000 | 
| commit | de51b631a7cc29c2bb7b1a97c71edf86ba53e58a (patch) | |
| tree | 35a99d27788e0f7bb1f5e90010494b5a3a5b9d70 /h-source/Application/Controllers | |
| parent | 59a70fc11463d7583d2ee9e72f3c54e8bd6a0876 (diff) | |
h-source:improved the way forms are managed - part 2, improved help pages
Diffstat (limited to 'h-source/Application/Controllers')
6 files changed, 24 insertions, 0 deletions
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);  	}  | 
