0
class Module_PhotoController extends Core_Controller_Action_Standard
{
public function nameAction()
{
$this->view->form = $form = new Modulename_Form_Fromname();
$this->addElement('Text', 'sender', array(
'label' => 'Send to',
'maxlength' => '40',
'filters' => array(
//new Engine_Filter_HtmlSpecialChars(),
'StripTags',
new Engine_Filter_Censor(),
new Engine_Filter_StringLength(array('max' => '63')),
)
));
}
}