?
home/cideo/site_2015/application/models/Decorator/Save.php 0000666 00000000613 15126061532 0017316 0 ustar 00 <?php
class Decorator_Save extends Zend_Form_Decorator_Abstract
{
protected $_format = '<div id="btsave" for="%s">%s</div>';
public function render($content)
{
$element = $this->getElement();
$id = htmlentities($element->getId());
$label = "";
$markup = sprintf($this->_format, $id, $label);
return $markup;
}
}
?>