• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/runtimeprovider/base.php
  • Класс: BitrixReportVisualConstructorRuntimeProviderBase
  • Вызов: Base::processAvailableRelations
protected function processAvailableRelations($entity)
{
	foreach ($this->getRelations() as $relationName)
	{
		$processMethodName = 'processWith' . ucfirst($relationName);
		call_user_func_array(array($this, $processMethodName), array($entity));
	}
}