1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
Calendar.php
См. документацию.
1<?php
2
4
10
11class Calendar extends Entity
12{
13 public function getCounterInternal(): int
14 {
15 return Counter::getInstance($this->getContext()->getUserId())
16 ->get(CounterDictionary::COUNTER_GROUP_INVITES, $this->groupId)
17 ;
18 }
19
20 protected function getLinkType(): LinkType
21 {
22 return LinkType::Calendar;
23 }
24
25 public static function isAvailable(): bool
26 {
27 return Loader::includeModule('calendar');
28 }
29
30 public static function getRestEntityName(): string
31 {
32 return 'calendar';
33 }
34}
static getRestEntityName()
Определения Calendar.php:30
static getInstance()
Определения application.php:98
Определения loader.php:13
Определения ufield.php:9