CC-3444: Ability to edit currently playing show (end time and permissions)

- done
This commit is contained in:
James 2012-03-30 15:11:24 -04:00
parent 5242ac45a9
commit 286c240012
10 changed files with 140 additions and 26 deletions

View file

@ -34,6 +34,17 @@ class Application_Form_AddShowStyle extends Zend_Form_SubForm
))));
}
public function disable(){
$elements = $this->getElements();
foreach ($elements as $element)
{
if ($element->getType() != 'Zend_Form_Element_Hidden')
{
$element->setAttrib('readonly',true);
$element->setAttribs(array('style' => 'color: #B1B1B1; '));
}
}
}
}