• Модуль: imopenlines
  • Путь к файлу: ~/bitrix/modules/imopenlines/lib/session.php
  • Класс: BitrixImOpenLinesSession
  • Вызов: Session::setQueueFlagCache
static function setQueueFlagCache($type = "")
{
	if (!$type)
	{
		return false;
	}

	$app = Application::getInstance();
	$managedCache = $app->getManagedCache();
	$managedCache->clean("imol_queue_flag_".$type);
	$managedCache->read(86400*30, "imol_queue_flag_".$type);
	$managedCache->set("imol_queue_flag_".$type, true);

	return true;
}