• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_config.php
  • Класс: CVoxImplantConfig
  • Вызов: CVoxImplantConfig::GetDefaultMelodies
static function GetDefaultMelodies($lang = 'EN')
{
	if ($lang !== false)
	{
		$lang = mb_strtoupper($lang);
		if ($lang == 'KZ')
		{
			$lang = 'RU';
		}
		else if (!in_array($lang, static::GetMelodyLanguages()))
		{
			$lang = 'EN';
		}
	}
	else
	{
		$lang = '#LANG_ID#';
	}

	return array(
		"MELODY_WELCOME" => "https://dl.bitrix24.com/telephony/".$lang."01.mp3",
		"MELODY_WAIT" => "https://dl.bitrix24.com/telephony/MELODY.mp3",
		"MELODY_ENQUEUE" => "https://dl.bitrix24.com/telephony/".$lang."07.mp3",
		"MELODY_HOLD" => "https://dl.bitrix24.com/telephony/MELODY.mp3",
		"MELODY_VOICEMAIL" => "https://dl.bitrix24.com/telephony/".$lang."03.mp3",
		"MELODY_VOTE" => "https://dl.bitrix24.com/telephony/".$lang."04.mp3",
		"MELODY_VOTE_END" => "https://dl.bitrix24.com/telephony/".$lang."05.mp3",
		"MELODY_RECORDING" => "https://dl.bitrix24.com/telephony/".$lang."06.mp3",
		"WORKTIME_DAYOFF_MELODY" => "https://dl.bitrix24.com/telephony/".$lang."03.mp3",
	);
}