CC-2704: Support settings UI tweaks

- adding server name again under Preference
This commit is contained in:
James 2011-08-19 16:42:46 -04:00
parent 8e108e8596
commit 30fcb0b95d
3 changed files with 29 additions and 2 deletions

View file

@ -13,7 +13,19 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm
if($defaultFade == ""){
$defaultFade = '00:00:00.000000';
}
//Station name
$this->addElement('text', 'stationName', array(
'class' => 'input_text',
'label' => 'Station Name',
'required' => false,
'filters' => array('StringTrim'),
'value' => Application_Model_Preference::GetValue("station_name"),
'decorators' => array(
'ViewHelper'
)
));
//Default station fade
$this->addElement('text', 'stationDefaultFade', array(
'class' => 'input_text',