CC-4090: Make code style PSR compliant
-removed all trailing whitespace in forms directory -replace all tabs with 4 spaces
This commit is contained in:
parent
d9cde230cd
commit
7ce4934cdc
25 changed files with 297 additions and 297 deletions
|
@ -10,21 +10,21 @@ class Application_Form_AddShowWho extends Zend_Form_SubForm
|
|||
'label' => 'Search Users:',
|
||||
'class' => 'input_text ui-autocomplete-input',
|
||||
'required' => false
|
||||
));
|
||||
));
|
||||
|
||||
$options = array();
|
||||
$hosts = Application_Model_User::getHosts();
|
||||
$options = array();
|
||||
$hosts = Application_Model_User::getHosts();
|
||||
|
||||
foreach ($hosts as $host) {
|
||||
$options[$host['index']] = $host['label'];
|
||||
}
|
||||
foreach ($hosts as $host) {
|
||||
$options[$host['index']] = $host['label'];
|
||||
}
|
||||
|
||||
//Add hosts selection
|
||||
$hosts = new Zend_Form_Element_MultiCheckbox('add_show_hosts');
|
||||
$hosts->setLabel('DJs:')
|
||||
->setMultiOptions($options);
|
||||
//Add hosts selection
|
||||
$hosts = new Zend_Form_Element_MultiCheckbox('add_show_hosts');
|
||||
$hosts->setLabel('DJs:')
|
||||
->setMultiOptions($options);
|
||||
|
||||
$this->addElement($hosts);
|
||||
$this->addElement($hosts);
|
||||
}
|
||||
|
||||
public function disable(){
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue