• Модуль: imbot
  • Путь к файлу: ~/bitrix/modules/imbot/lib/bot/giphy.php
  • Класс: BitrixImBotBotGiphy
  • Вызов: Giphy::onAppLang
static function onAppLang($icon, $lang = null)
{
	$title = Loc::getMessage('IMBOT_GIPHY_ICON_'.mb_strtoupper($icon).'_TITLE', null, $lang);
	$description = Loc::getMessage('IMBOT_GIPHY_ICON_'.mb_strtoupper($icon).'_DESCRIPTION', null, $lang);
	$copyright = Loc::getMessage('IMBOT_GIPHY_ICON_COPYRIGHT', null, $lang);

	$result = false;
	if ($title <> '')
	{
		$result = Array(
			'TITLE' => $title,
			'DESCRIPTION' => $description,
			'COPYRIGHT' => $copyright
		);
	}

	return $result;
}