-changes to list view. Framework so that we may change selected day

-changes to add-user. Started implementing Vladimirs design.
This commit is contained in:
mkonecny 2011-02-07 19:03:14 -05:00
parent e9691f9a4c
commit bc5b9efb4b
19 changed files with 351 additions and 69 deletions

View file

@ -8,47 +8,54 @@ class Application_Form_AddUser extends Zend_Form
// Add login element
$this->addElement('text', 'login', array(
'label' => 'Username:',
'class' => 'input_text',
'required' => true,
'filters' => array('StringTrim'),
'validators' => array('NotEmpty')
));
// Add password element
// Add password element
$this->addElement('text', 'password', array(
'label' => 'Password:',
'class' => 'input_text',
'required' => true,
'filters' => array('StringTrim'),
'validators' => array('NotEmpty')
));
// Add first name element
// Add first name element
$this->addElement('text', 'first_name', array(
'label' => 'Firstname:',
'class' => 'input_text',
'required' => true,
'filters' => array('StringTrim'),
'validators' => array('NotEmpty')
));
// Add last name element
// Add last name element
$this->addElement('text', 'last_name', array(
'label' => 'Lastname:',
'class' => 'input_text',
'required' => true,
'filters' => array('StringTrim'),
'validators' => array('NotEmpty')
));
//Add type select
$this->addElement('select', 'type', array(
//Add type select
$this->addElement('select', 'type', array(
'required' => true,
'class' => 'input_select',
'style' => 'width: 40%',
'multiOptions' => array(
"A" => "admin",
"A" => "admin",
"H" => "host",
"G" => "guest",
"G" => "guest",
),
));
// Add the submit button
// Add the submit button
$this->addElement('submit', 'submit', array(
'class' => 'ui-button ui-state-default right-floated',
'ignore' => true,
'label' => 'Submit',
));