%PDF- %PDF-
| Direktori : /proc/self/root/home/bitrix/www/bitrix/modules/main/lib/grid/panel/ |
| Current File : //proc/self/root/home/bitrix/www/bitrix/modules/main/lib/grid/panel/actions.php |
<?
namespace Bitrix\Main\Grid\Panel;
/**
* Class Actions
* @package Bitrix\Main\Grid\Panel
*/
class Actions
{
const CREATE = "CREATE";
const SEND = "SEND";
const ACTIVATE = "ACTIVATE";
const SHOW = "SHOW";
const HIDE = "HIDE";
const REMOVE = "REMOVE";
const CALLBACK = "CALLBACK";
const INLINE_EDIT = "INLINE_EDIT";
const HIDE_ALL_EXPECT = "HIDE_ALL_EXPECT";
const SHOW_ALL = "SHOW_ALL";
const RESET_CONTROLS = "RESET_CONTROLS";
/**
* Gets types list of actions
* @return array
*/
public static function getList()
{
$reflection = new \ReflectionClass(__CLASS__);
return $reflection->getConstants();
}
}