• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/classes/general/calendar_sceleton.php
  • Класс: CCalendarSceleton
  • Вызов: CCalendarSceleton::showCalendarGridError
static function showCalendarGridError(string $title, string $content = ''): bool
{
	global $APPLICATION;
	$APPLICATION->IncludeComponent(
		"bitrix:calendar.grid.error",
		"",
		[
			'TITLE' => $title,
			'CONTENT' => $content,
		]
	);

	return true;
}