42 parent::initializeArguments();
43 $this->
registerTagAttribute(
'disabled',
'string',
'Specifies that the input element should be disabled when the page loads');
44 $this->
registerTagAttribute(
'maxlength',
'int',
'The maxlength attribute of the input field (will not be validated)');
47 $this->
registerArgument(
'errorClass',
'string',
'CSS class to set if there are errors for this view helper', FALSE,
'f3-form-error');
61 $this->tag->addAttribute(
'type',
'password');
62 $this->tag->addAttribute(
'name', $name);
63 $this->tag->addAttribute(
'value', $this->
getValue());
67 return $this->tag->render();
registerTagAttribute($name, $type, $description, $required=FALSE, $default=NULL)
registerArgument($name, $type, $description, $required=FALSE, $defaultValue=NULL)
registerUniversalTagAttributes()