• Модуль: tasks
  • Путь к файлу: ~/bitrix/modules/tasks/lib/internals/database/lazyaccess.php
  • Класс: BitrixTasksInternalsDataBaseLazyAccess
  • Вызов: LazyAccess::__call
public function __call($name, array $arguments)
{
	// todo: implement functional way of setting and getting fields: i.e. setFieldDescription() and getFieldDescription()
	if(mb_strpos('getField', $name) == 0)
	{
		$name = mb_substr($name, 8); // strip getField
		$name = $this->getMap()->decodeCamelFieldName($name);
		if($name)
		{
			return $this[$name];
		}
	}

	return null;
}