- Модуль: iblock
- Путь к файлу: ~/bitrix/modules/iblock/lib/grid/panel/ui/actions/item/elementgroupactionsitem.php
- Класс: BitrixIblockGridPanelUIActionsItemElementGroupActionsItem
- Вызов: ElementGroupActionsItem::prepareChildItems
protected function prepareChildItems(): array
{
if ($this->rights->canEditElements())
{
return [
new ActivateGroupChild($this->iblockId, $this->rights),
new DeactivateGroupChild($this->iblockId, $this->rights),
new CreateCodeGroupChild($this->iblockId, $this->rights),
new ClearCounterGroupChild($this->iblockId, $this->rights),
new MoveToSectionGroupChild($this->iblockId, $this->rights),
new AddToSectionGroupChild($this->iblockId, $this->rights),
];
}
return [];
}