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

	$result = false;
	if ($title <> '')
	{
		$result = Array(
			'TITLE' => $title,
			'PARAMS' => $params
		);
	}

	return $result;
}