CC-2110 : Soundcloud file metadata
added show genre column, this is used instead of soundcloud default genre if set.
This commit is contained in:
parent
7be60fbf84
commit
b97e79773b
12 changed files with 174 additions and 38 deletions
|
@ -21,7 +21,15 @@ class Application_Form_AddShowWhat extends Zend_Form_SubForm
|
|||
'required' => false,
|
||||
'filters' => array('StringTrim'),
|
||||
'validators' => array('NotEmpty')
|
||||
));
|
||||
));
|
||||
|
||||
// Add genre element
|
||||
$this->addElement('text', 'add_show_genre', array(
|
||||
'label' => 'Genre:',
|
||||
'class' => 'input_text',
|
||||
'required' => false,
|
||||
'filters' => array('StringTrim')
|
||||
));
|
||||
|
||||
// Add the description element
|
||||
$this->addElement('textarea', 'add_show_description', array(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue