1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
closesession.php
См. документацию.
1<?php
2
3namespace Bitrix\Main\Engine\ActionFilter;
4
5use Bitrix\Main\Event;
6
12final class CloseSession extends Base
13{
17 private $enabled;
18
23 public function __construct($enabled = true)
24 {
25 $this->enabled = $enabled;
26
27 parent::__construct();
28 }
29
30 public function onBeforeAction(Event $event)
31 {
32 if (!$this->enabled)
33 {
34 return;
35 }
36
37 session_write_close();
38 }
39}
Определения event.php:5
$event
Определения prolog_after.php:141