Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
userall.php
1<?php
2
3
5
6
9
10class UserAll extends EntityBase
11{
12
13 public function getType(): string
14 {
15 return AccessCode::TYPE_USER;
16 }
17
18 public function getName(): string
19 {
20 return Loc::getMessage('MAIN_UI_SELECTOR_ACCESSRIGHT_TOALL_INTRANET');
21 }
22
23 public function getUrl(): string
24 {
25 return '';
26 }
27
28 public function getAvatar(int $width = 58, int $height = 58): ?string
29 {
30 return '';
31 }
32
33 protected function loadModel()
34 {
35 return null;
36 }
37}
static getMessage($code, $replace=null, $language=null)
Definition loc.php:29
getAvatar(int $width=58, int $height=58)
Definition userall.php:28