• Модуль: ui
  • Путь к файлу: ~/bitrix/modules/ui/lib/entityform/scope.php
  • Класс: BitrixUiEntityFormScope
  • Вызов: Scope::getScopeById
public function getScopeById(int $scopeId): ?array
{
	if ($row = EntityFormConfigTable::getRowById($scopeId))
	{
		return (is_array($row['CONFIG']) ? $row['CONFIG'] : null);
	}
	return null;
}