• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/Debugger/Session/Session.php
  • Класс: BitrixBizprocDebuggerSessionSession
  • Вызов: Session::isStartedInDocumentType
public function isStartedInDocumentType(array $parameterDocumentType): bool
{
	[$moduleId, $entity, $documentType] = CBPHelper::ParseDocumentId($parameterDocumentType);

	return (
		$moduleId === $this->getModuleId()
		&& $entity === $this->getEntity()
		&& $documentType === $this->getDocumentType()
	);
}