1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
contenthtml.php
См. документацию.
1<?php
8namespace Bitrix\Sender\Internals\QueryController;
9
10use Bitrix\Main\Localization\Loc;
11use Bitrix\Main\HttpResponse;
12
13Loc::loadMessages(__FILE__);
14
19class ContentHtml extends Content
20{
24 protected $html;
25
29 public function set($html)
30 {
31 $this->html = $html;
32 }
33
37 public function toText()
38 {
39 if ($this->errors->isEmpty())
40 {
41 return $this->html;
42 }
43 else
44 {
45 return implode('<br>', $this->getErrorMessages());
46 }
47
48 }
49}