• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/googleapipush.php
  • Класс: BitrixCalendarSyncGoogleApiPush
  • Вызов: GoogleApiPush::isValid
static function isValid(?array $push): bool
{
	if ($push === null)
	{
		return false;
	}

	$now = time();
	$tsExpires = strtotime($push['EXPIRES']);

	return !($now > $tsExpires);
}