1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
storegroup.php
См. документацию.
1<?php
2
3namespace Bitrix\Catalog\Integration\Report\Dashboard\Group;
4
5use Bitrix\Main\Localization\Loc;
6
7class StoreGroup implements Group
8{
9 public function getGroupKey(): string
10 {
11 return 'catalog_inventory_management';
12 }
13
14 public function getGroupTitle(): string
15 {
16 return Loc::getMessage('STORE_GROUP_TITLE') ?? '';
17 }
18}