- Модуль: intranet
- Путь к файлу: ~/bitrix/modules/intranet/lib/Site/Sections/AutomationSection.php
- Класс: BitrixIntranetSiteSectionsAutomationSection
- Вызов: AutomationSection::getBizProc
static function getBizProc(): array
{
$available = Loader::includeModule('bizproc') && CBPRuntime::isFeatureEnabled();
return [
'id' => 'bizproc',
'title' => Loc::getMessage('AUTOMATION_SECTION_BIZPROC_ITEM_TITLE'),
'available' => $available,
'url' => SITE_DIR . 'bizproc/',
'extraUrls' => [
SITE_DIR . 'company/personal/bizproc/',
SITE_DIR . 'company/personal/processes/',
],
'iconClass' => 'ui-icon intranet-automation-bp-icon',
'menuData' => [
'real_link' => SITE_DIR . 'company/personal/bizproc/',
'counter_id' => 'bp_tasks',
'menu_item_id' => 'menu_bizproc_sect',
'top_menu_id' => 'top_menu_id_bizproc',
],
'tileData' => [
'url' => SITE_DIR . 'company/personal/bizproc/',
],
];
}