• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/classes/general/vi_main.php
  • Класс: CVoxImplantMain
  • Вызов: CVoxImplantMain::GetTrialTextMain
static function GetTrialTextMain()
{
	if(BitrixMainLoader::includeModule('bitrix24'))
		$transcriptionLimited = !in_array(CBitrix24::getLicensePrefix(), VITranscript::getAllowedRegions());
	else
		$transcriptionLimited = false;

	$title = GetMessage('VI_TRIAL_TITLE');
	$text = GetMessage('VI_TRIAL_TEXT_TITLE').'
		
  • '.GetMessage('VI_TRIAL_FEATURES_1').'
  • '.GetMessage('VI_TRIAL_FEATURES_2').'
  • '.GetMessage('VI_TRIAL_FEATURES_3').'
  • '.GetMessage('VI_TRIAL_FEATURES_4').'
  • '.GetMessage('VI_TRIAL_FEATURES_5').' '.GetMessage('VI_TRIAL_SOON').'
  • '.GetMessage('VI_TRIAL_FEATURES_6_3').'
  • '; if($transcriptionLimited) { $text .= '
  • '.GetMessage('VI_TRIAL_FEATURES_7').'
  • '; } $text .= '
'.GetMessage('VI_TRIAL_LINK_TEXT').' '.GetMessage('VI_TRIAL_TARIFF').' '; return Array('TITLE' => $title, 'TEXT' => $text); }