1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
RenderedResult.php
См. документацию.
1<?php
2
3namespace Bitrix\Bizproc\Result;
4
6{
7 public const NO_RESULT = 0;
8 public const BB_CODE_RESULT = 1;
9 public const USER_RESULT = 2;
10
11 public const NO_RIGHTS = 3;
12
13
14 public function __construct(
15 public readonly string $text,
16 public readonly int $status,
17 ) {}
18
19 public static function makeNoRights(): RenderedResult
20 {
21
22 return new self('', self::NO_RIGHTS);
23 }
24
25 public static function makeNoResult(): RenderedResult
26 {
27
28 return new self('', self::NO_RESULT);
29 }
30}
__construct(public readonly string $text, public readonly int $status,)
Определения RenderedResult.php:14
$status
Определения session.php:10
$text
Определения template_pdf.php:79