* @package tao */ class tao_helpers_form_xhtml_HtmlWrapper implements tao_helpers_form_Decorator { // --- ASSOCIATIONS --- // --- ATTRIBUTES --- /** * Short description of attribute begin * * @access protected * @var string */ protected $begin = ''; /** * Short description of attribute end * * @access protected * @var string */ protected $end = ''; // --- OPERATIONS --- /** * Short description of method preRender * * @access public * @author Bertrand Chevrier, * @return string */ public function preRender() { $returnValue = (string) ''; return (string) $returnValue; } /** * Short description of method postRender * * @access public * @author Bertrand Chevrier, * @return string */ public function postRender() { $returnValue = (string) ''; return (string) $returnValue; } /** * Short description of method getOption * * @access public * @author Bertrand Chevrier, * @param string key * @return string */ public function getOption($key) { $returnValue = (string) ''; return (string) $returnValue; } /** * Short description of method setOption * * @access public * @author Bertrand Chevrier, * @param string key * @param string value * @return boolean */ public function setOption($key, $value) { $returnValue = (bool) false; return (bool) $returnValue; } /** * Short description of method __construct * * @access public * @author Bertrand Chevrier, * @param array options * @return mixed */ public function __construct($options = []) { } }