Manager::getCode

  1. Bitrix24 API (v. 23.675.0)
  2. tasks
  3. Manager
  4. getCode
  • Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/manager.php
  • Класс: BitrixTasksManager
  • Вызов: Manager::getCode
static function getCode($prefix = false)
{
	$class = explode('\', (string) get_called_class());
	if(empty($class) && empty($class[count($class) - 1]))
	{
		throw new BitrixMainSystemException('Cannot identify sub-entity code');
	}

	return ($prefix ? static::SE_PREFIX : '').ToUpper($class[count($class) - 1]);
}

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