Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
revision.php
1<?php
2namespace Bitrix\Im;
3
5{
11 const WEB = 130;
12
21 const MOBILE = 19;
22
26 const DESKTOP = 5;
27
31 const REST = 32;
32
33 public static function getWeb()
34 {
35 return static::WEB;
36 }
37
38 public static function getMobile()
39 {
40 return static::MOBILE;
41 }
42
43 public static function getDesktop()
44 {
45 return static::DESKTOP;
46 }
47
48 public static function getRest()
49 {
50 return static::REST;
51 }
52
53 public static function get()
54 {
55 return [
56 'rest' => static::getRest(),
57 'web' => static::getWeb(),
58 'mobile' => static::getMobile(),
59 'desktop' => static::getDesktop(),
60 ];
61 }
62}
static getMobile()
Definition revision.php:38
static getDesktop()
Definition revision.php:43