Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
theme.php
1<?
2
4
5
10class Theme
11{
12 const DEFAULT_FILTER = "DEFAULT";
13 const BORDER = "BORDER";
14 const ROUNDED = "ROUNDED";
15 const LIGHT = "LIGHT";
16 const MUTED = "MUTED";
17 const SPACES = "SPACES";
18
23 public static function getList()
24 {
25 $reflection = new \ReflectionClass(__CLASS__);
26 return $reflection->getConstants();
27 }
28}