* @package tao */ class tao_helpers_form_elements_xhtml_Submit extends tao_helpers_form_elements_Submit { use XhtmlRenderingTrait; /** * Short description of method render * * @access public * @author Bertrand Chevrier, * @return string */ public function render() { $returnValue = (string) ''; if (is_null($this->value) || empty($this->value)) { $this->value = __('Save'); } $returnValue = "renderAttributes(); $returnValue .= ' value="' . _dh($this->value) . '" />'; return (string) $returnValue; } }