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

	$app = Application::getInstance();
	$managedCache = $app->getManagedCache();
	if ($result = $managedCache->read(86400*30, "imol_queue_flag_".$type))
	{
		$result = $managedCache->get("imol_queue_flag_".$type) === false? false: true;
	}
	return $result;
}