* @package Combodo\iTop\Application\UI\Component\Html\Html * @since 2.8.0 */ class Html extends UIBlock { // Overloaded constants const BLOCK_CODE = 'ibo-html'; const HTML_TEMPLATE_REL_PATH = 'components/html/layout'; const JS_TEMPLATE_REL_PATH = 'components/html/layout'; /** @var string $sHtml */ protected $sHtml; /** * Html constructor. * * @param string $sHtml */ public function __construct($sHtml = '') { $this->sHtml = $sHtml; parent::__construct(); } /** * @return string */ public function GetHtml() { return $this->sHtml; } /** * @param string $sHtml * @return $this */ public function SetHtml($sHtml) { $this->sHtml = $sHtml; return $this; } }