Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/modules/main/lib/grid/panel/ |
Upload File : |
<?php namespace Bitrix\Main\Grid\Panel; use ReflectionClass; /** * JS actions of controls. * * @package Bitrix\Main\Grid\Panel */ class Actions { public const CREATE = 'CREATE'; public const SEND = 'SEND'; public const ACTIVATE = 'ACTIVATE'; public const SHOW = 'SHOW'; public const HIDE = 'HIDE'; public const REMOVE = 'REMOVE'; public const CALLBACK = 'CALLBACK'; public const INLINE_EDIT = 'INLINE_EDIT'; public const HIDE_ALL_EXPECT = 'HIDE_ALL_EXPECT'; public const SHOW_ALL = 'SHOW_ALL'; public const RESET_CONTROLS = 'RESET_CONTROLS'; /** * Gets types list of actions * * @return array */ public static function getList() { $reflection = new ReflectionClass(__CLASS__); return $reflection->getConstants(); } }