Changed all other buttons that says "Submit" to "Save. Also added some CSS stuff so that the "Save" button at the top of Preference page have some space between itself and the form below.
164 lines
4.8 KiB
PHP
164 lines
4.8 KiB
PHP
<?php
|
|
|
|
class Application_Form_EditAudioMD extends Zend_Form
|
|
{
|
|
/*
|
|
"title": "track_title",\
|
|
"artist": "artist_name",\
|
|
"album": "album_title",\
|
|
"genre": "genre",\
|
|
"mood": "mood",\
|
|
"tracknumber": "track_number",\
|
|
"bpm": "bpm",\
|
|
"organization": "label",\
|
|
"composer": "composer",\
|
|
"encodedby": "encoded_by",\
|
|
"conductor": "conductor",\
|
|
"date": "year",\
|
|
"website": "info_url",\
|
|
"isrc": "isrc_number",\
|
|
"copyright": "copyright",\
|
|
*/
|
|
|
|
|
|
public function init()
|
|
{
|
|
// Set the method for the display form to POST
|
|
$this->setMethod('post');
|
|
|
|
// Add title field
|
|
$this->addElement('text', 'track_title', array(
|
|
'label' => 'Title:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim'),
|
|
));
|
|
|
|
// Add artist field
|
|
$this->addElement('text', 'artist_name', array(
|
|
'label' => 'Artist:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim'),
|
|
));
|
|
|
|
// Add album field
|
|
$this->addElement('text', 'album_title', array(
|
|
'label' => 'Album:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add track number field
|
|
$this->addElement('text', 'track_number', array(
|
|
'label' => 'Track:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim'),
|
|
'validators' => array('Int')
|
|
));
|
|
|
|
// Add genre field
|
|
$this->addElement('text', 'genre', array(
|
|
'label' => 'Genre:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add year field
|
|
$this->addElement('text', 'year', array(
|
|
'label' => 'Year:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim'),
|
|
'validators' => array(
|
|
array('date', false, array('YYYY-MM-DD')),
|
|
array('date', false, array('YYYY-MM')),
|
|
array('date', false, array('YYYY'))
|
|
)
|
|
));
|
|
|
|
// Add label field
|
|
$this->addElement('text', 'label', array(
|
|
'label' => 'Label:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add composer field
|
|
$this->addElement('text', 'composer', array(
|
|
'label' => 'Composer:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add mood field
|
|
$this->addElement('text', 'mood', array(
|
|
'label' => 'Mood:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add bmp field
|
|
$this->addElement('text', 'bpm', array(
|
|
'label' => 'BPM:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add copyright field
|
|
$this->addElement('text', 'copyright', array(
|
|
'label' => 'Copyright:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add isrc number field
|
|
$this->addElement('text', 'isrc_number', array(
|
|
'label' => 'ISRC Number:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add website field
|
|
$this->addElement('text', 'info_url', array(
|
|
'label' => 'Website:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add language field
|
|
$this->addElement('text', 'language', array(
|
|
'label' => 'Language:',
|
|
'class' => 'input_text',
|
|
'filters' => array('StringTrim')
|
|
));
|
|
|
|
// Add the submit button
|
|
$this->addElement('submit', 'submit', array(
|
|
'ignore' => true,
|
|
'class' => 'ui-button ui-state-default',
|
|
'label' => 'Save',
|
|
'decorators' => array(
|
|
'ViewHelper'
|
|
)
|
|
));
|
|
|
|
// Add the submit button
|
|
$this->addElement('button', 'cancel', array(
|
|
'ignore' => true,
|
|
'class' => 'ui-button ui-state-default ui-button-text-only md-cancel',
|
|
'label' => 'Cancel',
|
|
'onclick' => 'javascript:document.location="/Library"',
|
|
'decorators' => array(
|
|
'ViewHelper'
|
|
)
|
|
));
|
|
|
|
$this->addDisplayGroup(array('submit', 'cancel'), 'submitButtons', array(
|
|
'decorators' => array(
|
|
'FormElements',
|
|
'DtDdWrapper'
|
|
)
|
|
));
|
|
}
|
|
|
|
|
|
}
|
|
|