Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
relations.php
1
<?php
2
3
namespace
Bitrix\Calendar\Core\Event\Properties
;
4
5
use
Bitrix\Calendar\Core\Base\BaseProperty
;
6
7
class
Relations
extends
BaseProperty
8
{
12
private
?
string
$commentXmlId;
13
14
public
function
__construct
(?
string
$commentXmlId)
15
{
16
$this->commentXmlId = $commentXmlId;
17
}
18
19
public
function
getFields
(): array
20
{
21
return
[
22
'COMMENT_XML_ID'
=> $this->commentXmlId
23
];
24
}
25
26
public
function
getCommentXmlId
(): ?string
27
{
28
return
$this->commentXmlId;
29
}
30
31
public
function
setCommentXmlId
($commentXmlId):
Relations
32
{
33
$this->commentXmlId = $commentXmlId;
34
35
return
$this;
36
}
37
38
public
function
toString
(): string
39
{
40
return
$this->commentXmlId;
41
}
42
}
Bitrix\Calendar\Core\Base\BaseProperty
Definition
baseproperty.php:6
Bitrix\Calendar\Core\Event\Properties\Relations
Definition
relations.php:8
Bitrix\Calendar\Core\Event\Properties\Relations\__construct
__construct(?string $commentXmlId)
Definition
relations.php:14
Bitrix\Calendar\Core\Event\Properties\Relations\toString
toString()
Definition
relations.php:38
Bitrix\Calendar\Core\Event\Properties\Relations\getCommentXmlId
getCommentXmlId()
Definition
relations.php:26
Bitrix\Calendar\Core\Event\Properties\Relations\setCommentXmlId
setCommentXmlId($commentXmlId)
Definition
relations.php:31
Bitrix\Calendar\Core\Event\Properties\Relations\getFields
getFields()
Definition
relations.php:19
Bitrix\Calendar\Core\Event\Properties
Definition
attendee.php:3
modules
calendar
lib
core
event
properties
relations.php
Создано системой
1.10.0