Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
entitymap.php
1
<?php
2
3
namespace
Bitrix\Calendar\Core\Base
;
4
5
use
Bitrix\Main\ArgumentException
;
6
10
class
EntityMap
extends
Map
11
{
19
public
function
addItems
(array $items): self
20
{
21
foreach
($items as $item)
22
{
23
$this->
add
($item);
24
}
25
26
return
$this;
27
}
28
37
public
function
add
($item, $key =
null
): self
38
{
39
$key = $key ?? $item->getId();
40
41
return
parent::add($item, $key);
42
}
43
50
public
function
updateItem
($item, $key =
null
): self
51
{
52
$key = $key ?? $item->getId();
53
54
return
parent::updateItem($item, $key);
55
}
56
}
Bitrix\Calendar\Core\Base\EntityMap
Definition
entitymap.php:11
Bitrix\Calendar\Core\Base\EntityMap\add
add($item, $key=null)
Definition
entitymap.php:37
Bitrix\Calendar\Core\Base\EntityMap\updateItem
updateItem($item, $key=null)
Definition
entitymap.php:50
Bitrix\Calendar\Core\Base\EntityMap\addItems
addItems(array $items)
Definition
entitymap.php:19
Bitrix\Calendar\Core\Base\Map
Definition
map.php:11
Bitrix\Main\ArgumentException
Definition
exception.php:34
Bitrix\Calendar\Core\Base
Definition
baseexception.php:3
modules
calendar
lib
core
base
entitymap.php
Создано системой
1.10.0