• Модуль: intranet
  • Путь к файлу: ~/bitrix/modules/intranet/lib/integration/templates/bitrix24/themepicker.php
  • Класс: BitrixIntranetIntegrationTemplatesBitrix24ThemePicker
  • Вызов: ThemePicker::shouldShowHint
public function shouldShowHint()
{
	if (!static::isAvailable())
	{
		return false;
	}

	$creationDate = COption::getOptionInt("main", "~controller_date_create", 0);
	if ($creationDate === 0)
	{
		return CUserOptions::getOption("intranet", $this->getHintOptionName(), true, $this->getUserId());
	}

	return
		$creationDate < mktime(0, 0, 0, 9, 30, 2017) &&
		time() - $creationDate > 86400 * 14 &&
		CUserOptions::getOption("intranet", $this->getHintOptionName(), true, $this->getUserId())
	;
}