38 lines
1.3 KiB
PHP
38 lines
1.3 KiB
PHP
<?php
|
|
|
|
class Application_Form_Preferences extends Zend_Form
|
|
{
|
|
|
|
public function init()
|
|
{
|
|
$this->setAction('/Preference/update')->setMethod('post');
|
|
|
|
// Add login element
|
|
$this->addElement('text', 'stationName', array(
|
|
'class' => 'input_text',
|
|
'label' => 'Station Name:',
|
|
'required' => true,
|
|
'filters' => array('StringTrim'),
|
|
'validators' => array('NotEmpty'),
|
|
'value' => Application_Model_Preference::GetValue("station_name")
|
|
));
|
|
|
|
// Add login element
|
|
$this->addElement('text', 'stationDefaultFade', array(
|
|
'class' => 'input_text',
|
|
'label' => 'Default Fade:',
|
|
'required' => false,
|
|
'filters' => array('StringTrim'),
|
|
'validators' => array(array('regex', false, array('/^[0-2][0-3]:[0-5][0-9]:[0-5][0-9](\.\d{1,6})?$/', 'messages' => 'enter a time 00:00:00{.000000}'))),
|
|
'value' => Application_Model_Preference::GetValue("default_fade")
|
|
));
|
|
|
|
$this->addElement('submit', 'submit', array(
|
|
'class' => 'ui-button ui-state-default',
|
|
'ignore' => true,
|
|
'label' => 'Submit',
|
|
));
|
|
}
|
|
}
|
|
///^[0-2][0-3]:[0-5][0-9]:[0-5][0-9]{.}[0-9]{0-6}/i
|