Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/report/lib/visualconstructor/fields/ |
Upload File : |
<?php namespace Bitrix\Report\VisualConstructor\Fields; /** * Class Html simple field to display some text or simple html * @package Bitrix\Report\VisualConstructor\Fields */ class Html extends Base { private $content; /** * Html constructor. * @param string $contentHtml String to set as content of html element. */ public function __construct($contentHtml = '') { $this->setContent($contentHtml); } /** * @return void */ public function printContent() { echo $this->getContent(); } /** * @return string */ public function getContent() { return $this->content; } /** * Setter for content. * * @param string $content String to set as Html element content. * @return void */ public function setContent($content) { $this->content = $content; } }