Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
eventlimits.php
1<?php
8namespace Bitrix\Vote\Vote;
9
11{
12 const BY_SESSION = 1;
13 const BY_COOKIE = 2;
14 const BY_IP = 4;
15 const BY_USER_AUTH = 8;
17 const BY_USER_ID = 32;
22 public static function getList()
23 {
24 return (new \ReflectionClass(__CLASS__))->getConstants();
25 }
26}