?
Current File : /home/c/i/d/cideo/site_2015/application/models/Decorator/Save.php
<?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;
					
					}
    
}
?>