• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/classes/general/taskitem.php
  • Класс: CTaskItem
  • Вызов: CTaskItem::isActionAllowed
public function isActionAllowed($actionId)
{
	$action = ActionDictionary::getActionByLegacyId($actionId);
	if (!$action)
	{
		return false;
	}

	return $this->checkAccess($action);
}