Bitrix-D7
23.9
Загрузка...
Поиск...
Не найдено
factory.php
1
<?php
2
3
namespace
Bitrix\Socialnetwork\Internals\EventService\Event
;
4
5
use
Bitrix\Socialnetwork\Internals\EventService\Event
;
6
use
Bitrix\Socialnetwork\Internals\EventService\EventDictionary
;
7
8
class
Factory
9
{
10
public
static
function
buildEvent
(
string
$hitId,
string
$type, array $data = [],
int
|
null
$eventId =
null
):
Event
11
{
12
switch
($type)
13
{
14
case
EventDictionary::EVENT_WORKGROUP_ADD
:
15
case
EventDictionary::EVENT_WORKGROUP_BEFORE_UPDATE
:
16
case
EventDictionary::EVENT_WORKGROUP_UPDATE
:
17
case
EventDictionary::EVENT_WORKGROUP_DELETE
:
18
$event =
new
WorkgroupEvent
($hitId, $type);
19
break
;
20
default
:
21
$event =
new
Event
($hitId, $type);
22
}
23
24
$event->setData($data);
25
26
if
($eventId)
27
{
28
$event->setId($eventId);
29
}
30
31
return
$event;
32
}
33
}
Bitrix\Socialnetwork\Internals\EventService\Event\Factory
Definition
factory.php:9
Bitrix\Socialnetwork\Internals\EventService\Event\Factory\buildEvent
static buildEvent(string $hitId, string $type, array $data=[], int|null $eventId=null)
Definition
factory.php:10
Bitrix\Socialnetwork\Internals\EventService\Event\WorkgroupEvent
Definition
workgroupevent.php:12
Bitrix\Socialnetwork\Internals\EventService\EventDictionary
Definition
eventdictionary.php:13
Bitrix\Socialnetwork\Internals\EventService\EventDictionary\EVENT_WORKGROUP_ADD
const EVENT_WORKGROUP_ADD
Definition
eventdictionary.php:15
Bitrix\Socialnetwork\Internals\EventService\EventDictionary\EVENT_WORKGROUP_DELETE
const EVENT_WORKGROUP_DELETE
Definition
eventdictionary.php:18
Bitrix\Socialnetwork\Internals\EventService\EventDictionary\EVENT_WORKGROUP_BEFORE_UPDATE
const EVENT_WORKGROUP_BEFORE_UPDATE
Definition
eventdictionary.php:16
Bitrix\Socialnetwork\Internals\EventService\EventDictionary\EVENT_WORKGROUP_UPDATE
const EVENT_WORKGROUP_UPDATE
Definition
eventdictionary.php:17
Bitrix\Socialnetwork\Internals\EventService\Event
Definition
event.php:16
Bitrix\Socialnetwork\Internals\EventService\Event
Definition
factory.php:3
modules
socialnetwork
lib
internals
eventservice
event
factory.php
Создано системой
1.10.0