changed to better looking theme with newer version of jquery UI. Can create new playlists on the side.

This commit is contained in:
naomiaro 2011-01-16 17:12:02 -05:00
parent 91e0db7647
commit ccb36c8106
33 changed files with 886 additions and 73 deletions

View file

@ -5,9 +5,6 @@ class Application_Form_PlaylistMetadata extends Zend_Form
public function init()
{
// Set the method for the display form to POST
$this->setMethod('post');
// Add username element
$this->addElement('text', 'title', array(
'label' => 'Title:',
@ -23,12 +20,6 @@ class Application_Form_PlaylistMetadata extends Zend_Form
'label' => 'Description:',
'required' => false,
));
// Add the submit button
$this->addElement('submit', 'submit', array(
'ignore' => true,
'label' => 'Submit',
));
}