28 lines
680 B
PHP
28 lines
680 B
PHP
<?php
|
|
|
|
class Application_Form_AddShowStyle extends Zend_Form_SubForm
|
|
{
|
|
|
|
public function init()
|
|
{
|
|
// Add show background-color input
|
|
$this->addElement('text', 'show-background-color', array(
|
|
'label' => 'Background Colour:',
|
|
'required' => true,
|
|
'filters' => array('StringTrim'),
|
|
'validators' => array('NotEmpty')
|
|
));
|
|
|
|
// Add show color input
|
|
$this->addElement('text', 'show-color', array(
|
|
'label' => 'Text Colour',
|
|
'required' => true,
|
|
'filters' => array('StringTrim'),
|
|
'validators' => array('NotEmpty')
|
|
));
|
|
}
|
|
|
|
|
|
}
|
|
|