CC-2110 : Soundcloud file metadata

added text area to preferences to allow for additional soundcloud tags.
This commit is contained in:
Naomi 2011-03-28 15:39:01 -04:00
parent df8b9af8f6
commit c0e8152077
4 changed files with 31 additions and 2 deletions

View file

@ -67,6 +67,14 @@ class Application_Form_Preferences extends Zend_Form
'value' => Application_Model_Preference::GetSoundCloudPassword()
));
// Add the description element
$this->addElement('textarea', 'SoundCloudTags', array(
'label' => 'space separated SoundCloud Tags',
'required' => false,
'class' => 'input_text_area',
'value' => Application_Model_Preference::GetSoundCloudTags()
));
$this->addElement('submit', 'submit', array(
'class' => 'ui-button ui-state-default',
'ignore' => true,