• Модуль: bizproc
  • Путь к файлу: ~/bitrix/modules/bizproc/lib/Debugger/Session/WorkflowContext.php
  • Класс: BitrixBizprocDebuggerSessionWorkflowContext
  • Вызов: WorkflowContext::findTemplateShards
private function findTemplateShards(int $templateId): ?TemplateShards
{
	return DebuggerSessionTemplateShardsTable::getList([
		'select' => ['ID', 'MODIFIED'],
		'filter' => ['TEMPLATE_ID' => $templateId],
		'order' => ['MODIFIED' => 'DESC'],
		'limit' => 1,
	])->fetchObject();
}