• Модуль: iblock
  • Путь к файлу: ~/bitrix/modules/iblock/lib/Integration/UI/Grid/General/BaseProvider.php
  • Класс: BitrixIblockIntegrationUIGridGeneralBaseProvider
  • Вызов: BaseProvider::prepareRow
public function prepareRow(array $rawRow): array
{
	$isEditable = $this->isEditable($rawRow);

	return [
		'id' => $rawRow[$this->getRowIdColumn()],
		'data' => $rawRow,
		'editable' => $isEditable,
		'columns' => $this->getRowColumns($rawRow),
		'actions' => $this->getRowActions($rawRow, $isEditable),
	];
}