• Модуль: landing
  • Путь к файлу: ~/bitrix/modules/landing/lib/hook/page/favicon.php
  • Класс: BitrixLandingHookPageFavicon
  • Вызов: Favicon::getMap
protected function getMap()
{
	return array(
		'PICTURE' => new FieldHidden('PICTURE', array(
			'title' => Loc::getMessage('LANDING_HOOK_FI_PICTURE'),
			'fetch_data_modification' => function($value)
			{
				if (PublicAction::restApplication())
				{
					if ($value > 0)
					{
						$path = File::getFilePath($value);
						if ($path)
						{
							$path = Manager::getUrlFromFile($path);
							return $path;
						}
					}
				}
				return $value;
			}
		))
	);
}