Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
other.php
1<?php
10
11
13
14class Other extends EntityBase
15{
16 public function getType(): string
17 {
18 return AccessCode::TYPE_OTHER;
19 }
20
21 public function getName(): string
22 {
23 return '';
24 }
25
26 public function getUrl(): string
27 {
28 return '';
29 }
30
31 public function getAvatar(int $width = 58, int $height = 58): ?string
32 {
33 return '';
34 }
35
36 protected function loadModel()
37 {
38 return null;
39 }
40}
getAvatar(int $width=58, int $height=58)
Definition other.php:31