80 lines
2.8 KiB
PHP
80 lines
2.8 KiB
PHP
<?php
|
|
|
|
class Application_Form_Preferences extends Zend_Form
|
|
{
|
|
|
|
public function init()
|
|
{
|
|
$this->setAction('/Preference/update')->setMethod('post');
|
|
|
|
//Station name
|
|
$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")
|
|
));
|
|
|
|
$defaultFade = Application_Model_Preference::GetDefaultFade();
|
|
if($defaultFade == ""){
|
|
$defaultFade = '00:00:00.000000';
|
|
}
|
|
|
|
//Default station fade
|
|
$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' => $defaultFade
|
|
));
|
|
|
|
$stream_format = new Zend_Form_Element_Radio('streamFormat');
|
|
$stream_format->setLabel('Stream Label:');
|
|
$stream_format->setMultiOptions(array("Artist - Title",
|
|
"Show - Artist - Title",
|
|
"Station name - Show name"));
|
|
$stream_format->setValue(Application_Model_Preference::GetStreamLabelFormat());
|
|
$this->addElement($stream_format);
|
|
|
|
|
|
$this->addElement('checkbox', 'UseSoundCloud', array(
|
|
'label' => 'Automatically Upload Recorded Shows To SoundCloud',
|
|
'required' => false,
|
|
'value' => Application_Model_Preference::GetDoSoundCloudUpload()
|
|
));
|
|
|
|
//SoundCloud Username
|
|
$this->addElement('text', 'SoundCloudUser', array(
|
|
'class' => 'input_text',
|
|
'label' => 'SoundCloud Username:',
|
|
'required' => false,
|
|
'filters' => array('StringTrim'),
|
|
'value' => Application_Model_Preference::GetSoundCloudUser()
|
|
));
|
|
|
|
//SoundCloud Password
|
|
$this->addElement('text', 'SoundCloudPassword', array(
|
|
'class' => 'input_text',
|
|
'label' => 'SoundCloud Password:',
|
|
'required' => false,
|
|
'filters' => array('StringTrim'),
|
|
'value' => Application_Model_Preference::GetSoundCloudPassword()
|
|
));
|
|
|
|
$this->addElement('submit', 'submit', array(
|
|
'class' => 'ui-button ui-state-default',
|
|
'ignore' => true,
|
|
'label' => 'Submit',
|
|
));
|
|
|
|
|
|
|
|
}
|
|
}
|