TestSessionHandlerProxy.php

Same filename and directory in other branches
  1. 9 core/modules/system/tests/modules/session_test/src/Session/TestSessionHandlerProxy.php
  2. 10 core/modules/system/tests/modules/session_test/src/Session/TestSessionHandlerProxy.php
  3. 11.x core/modules/system/tests/modules/session_test/src/Session/TestSessionHandlerProxy.php

Namespace

Drupal\session_test\Session

File

core/modules/system/tests/modules/session_test/src/Session/TestSessionHandlerProxy.php

View source
<?php

namespace Drupal\session_test\Session;


/**
 * Provides a test session handler proxy.
 */
class TestSessionHandlerProxy implements \SessionHandlerInterface {
    
    /**
     * The decorated session handler.
     *
     * @var \SessionHandlerInterface
     */
    protected $sessionHandler;
    
    /**
     * An optional argument.
     *
     * @var mixed
     */
    protected $optionalArgument;
    
    /**
     * Constructs a new TestSessionHandlerProxy object.
     *
     * @param \SessionHandlerInterface $session_handler
     *   The decorated session handler.
     * @param mixed $optional_argument
     *   (optional) An optional argument.
     */
    public function __construct(\SessionHandlerInterface $session_handler, $optional_argument = NULL) {
        $this->sessionHandler = $session_handler;
        $this->optionalArgument = $optional_argument;
    }
    
    /**
     * {@inheritdoc}
     */
    public function open($save_path, $name) {
        $trace = \Drupal::service('session_test.session_handler_proxy_trace');
        $trace[] = [
            'BEGIN',
            $this->optionalArgument,
            __FUNCTION__,
        ];
        $result = $this->sessionHandler
            ->open($save_path, $name);
        $trace[] = [
            'END',
            $this->optionalArgument,
            __FUNCTION__,
        ];
        return $result;
    }
    
    /**
     * {@inheritdoc}
     */
    public function close() {
        $trace = \Drupal::service('session_test.session_handler_proxy_trace');
        $trace[] = [
            'BEGIN',
            $this->optionalArgument,
            __FUNCTION__,
        ];
        $result = $this->sessionHandler
            ->close();
        $trace[] = [
            'END',
            $this->optionalArgument,
            __FUNCTION__,
        ];
        return $result;
    }
    
    /**
     * {@inheritdoc}
     */
    public function read($session_id) {
        $trace = \Drupal::service('session_test.session_handler_proxy_trace');
        $trace[] = [
            'BEGIN',
            $this->optionalArgument,
            __FUNCTION__,
            $session_id,
        ];
        $result = $this->sessionHandler
            ->read($session_id);
        $trace[] = [
            'END',
            $this->optionalArgument,
            __FUNCTION__,
            $session_id,
        ];
        return $result;
    }
    
    /**
     * {@inheritdoc}
     */
    public function write($session_id, $session_data) {
        $trace = \Drupal::service('session_test.session_handler_proxy_trace');
        $trace[] = [
            'BEGIN',
            $this->optionalArgument,
            __FUNCTION__,
            $session_id,
        ];
        $result = $this->sessionHandler
            ->write($session_id, $session_data);
        $trace[] = [
            'END',
            $this->optionalArgument,
            __FUNCTION__,
            $session_id,
        ];
        return $result;
    }
    
    /**
     * {@inheritdoc}
     */
    public function destroy($session_id) {
        return $this->sessionHandler
            ->destroy($session_id);
    }
    
    /**
     * {@inheritdoc}
     */
    public function gc($max_lifetime) {
        return $this->sessionHandler
            ->gc($max_lifetime);
    }

}

Classes

Title Deprecated Summary
TestSessionHandlerProxy Provides a test session handler proxy.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.