diff --git a/airtime_mvc/application/forms/PlaylistMetadata.php b/airtime_mvc/application/forms/PlaylistMetadata.php deleted file mode 100644 index d53a4ddab..000000000 --- a/airtime_mvc/application/forms/PlaylistMetadata.php +++ /dev/null @@ -1,32 +0,0 @@ -addElement('text', 'title', array( - 'label' => 'Title:', - 'class' => 'input_text', - 'required' => false, - 'filters' => array('StringTrim'), - 'validators' => array( - 'NotEmpty', - ) - )); - - // Add the comment element - $this->addElement('textarea', 'description', array( - 'label' => 'Description:', - 'class' => 'input_text_area', - 'required' => false, - )); - - // Add the comment element - $this->addElement('button', 'new_playlist_submit', array( - 'label' => 'Save', - 'ignore' => true - )); - } -} -