12 lines
470 B
PHTML
12 lines
470 B
PHTML
<div class="<?php echo $this->class ?>">
|
|
<?php echo $this->formLabel($this->element->getName(),
|
|
$this->element->getLabel()) ?>
|
|
<?php echo $this->{$this->element->helper}(
|
|
$this->element->getName(),
|
|
$this->element->getValue(),
|
|
$this->element->getAttribs()
|
|
) ?>
|
|
<?php echo $this->formErrors($this->element->getMessages()) ?>
|
|
<div class="hint"><?php echo $this->element->getDescription() ?></div>
|
|
</div>
|