• Модуль: report
  • Путь к файлу: ~/bitrix/modules/report/lib/visualconstructor/internal/model.php
  • Класс: BitrixReportVisualConstructorInternalModel
  • Вызов: Model::loadAttribute
public function loadAttribute($attributeName)
{
	if (property_exists($this, $attributeName) && $this->{$attributeName} == null)
	{
		$entity = static::load(array('ID' => $this->getId()), array($attributeName));
		$this->{$attributeName} = $entity->{$attributeName};
	}
}