Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
typeeditrule.php
1<?php
2
4
8use Bitrix\Calendar\Access\Rule\Traits\CurrentUserTrait;
9use CCalendarType;
10
12{
13 use CurrentUserTrait;
14
15 public function execute(AccessibleItem $item = null, $params = null): bool
16 {
17 if (!$item instanceof TypeModel)
18 {
19 return false;
20 }
21
22 if (!$this->hasCurrentUser())
23 {
24 return true;
25 }
26
27 if ($this->user->isAdmin() || $this->user->isSocNetAdmin($item->getXmlId()))
28 {
29 return true;
30 }
31
32 return in_array(
34 CCalendarType::GetOperations($item->getXmlId(), $this->user->getUserId()),
35 true
36 );
37 }
38}
static getOldActionKeyByNewActionKey(string $actionId)
execute(AccessibleItem $item=null, $params=null)