diff options
| author | Antonio Gallo <tonicucoz@gmail.com> | 2012-09-16 19:33:35 +0000 | 
|---|---|---|
| committer | Antonio Gallo <tonicucoz@gmail.com> | 2012-09-16 19:33:35 +0000 | 
| commit | 1db259e769ea5a50c0d9969da0b4dc9b14c66b5b (patch) | |
| tree | 22b580dd9bc5afe43e2b1ed2ad7b54356f57a1f1 /h-source/Application/Include | |
| parent | ba43829fd37a59edd063dce46b33dd430bc5f6a1 (diff) | |
improved the "can free operating systems be installed?"
Diffstat (limited to 'h-source/Application/Include')
| -rw-r--r-- | h-source/Application/Include/hardware.php | 15 | 
1 files changed, 13 insertions, 2 deletions
| diff --git a/h-source/Application/Include/hardware.php b/h-source/Application/Include/hardware.php index 2d0d26f..f2026a9 100644 --- a/h-source/Application/Include/hardware.php +++ b/h-source/Application/Include/hardware.php @@ -344,7 +344,7 @@ class Notebooks extends Hardware  		"E Garbage"				=>	"E-garbage"  	); -	public static $subtypeSelect = 'notebook,netbook,motherboard,tablet,not-specified'; +	public static $subtypeSelect = 'notebook,netbook,tablet,not-specified';  	public static $architectureSelect = array(  		"not specified"			=>	'not-specified', @@ -367,7 +367,13 @@ class Notebooks extends Hardware  		"yes (please specify in the description entry)"	=>	'yes',  	); -	public static $installableSelect = 'not-specified,no,yes'; +	public static $installableSelect = array( +		"not specified"	=>	'not-specified', +		"no (please specify in the description entry)" =>	'no', +		"yes"	=>	'yes', +	); +	 +// 	public static $installableSelect = 'not-specified,no,yes';  	public static $videoSelect = array(  		"not specified"							=>	'not-specified', @@ -452,6 +458,11 @@ class Notebooks extends Hardware  	{  		return implode(',',array_values(self::$preventWifiSelect));  	} +	 +	public static function installableList() +	{ +		return implode(',',array_values(self::$installableSelect)); +	}  }  class ThreeGcards extends Wifi | 
