ActionDictionary::getActionName

  1. Bitrix24 API (v. 23.675.0)
  2. sender
  3. ActionDictionary
  4. getActionName
  • Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/access/actiondictionary.php
  • Класс: Bitrix\Sender\Access\ActionDictionary
  • Вызов: ActionDictionary::getActionName
static function getActionName(string $value): ?string
{
	$constants = self::getActionNames();
	if (!array_key_exists($value, $constants))
	{
		return null;
	}

	return str_replace(self::PREFIX, '', $constants[$value]);
}

Добавить комментарий