Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Drupal\Core\PageCache\RequestPolicy; use Drupal\Core\PageCache\RequestPo..
Decoded Output download
<?php
namespace Drupal\Core\PageCache\RequestPolicy;
use Drupal\Core\PageCache\RequestPolicyInterface;
use Drupal\Core\Session\SessionConfigurationInterface;
use Symfony\Component\HttpFoundation\Request;
/**
* A policy allowing delivery of cached pages when there is no session open.
*
* Do not serve cached pages to authenticated users, or to anonymous users when
* the user's session is non-empty. The user's session may contain status
* messages from a form submission, the contents of a shopping cart, or other
* user-specific content that should not be cached and displayed to other users.
*/
class NoSessionOpen implements RequestPolicyInterface {
/**
* The session configuration.
*
* @var \Drupal\Core\Session\SessionConfigurationInterface
*/
protected $sessionConfiguration;
/**
* Constructs a new page cache session policy.
*
* @param \Drupal\Core\Session\SessionConfigurationInterface $session_configuration
* The session configuration.
*/
public function __construct(SessionConfigurationInterface $session_configuration) {
$this->sessionConfiguration = $session_configuration;
}
/**
* {@inheritdoc}
*/
public function check(Request $request) {
if (!$this->sessionConfiguration->hasSession($request)) {
return static::ALLOW;
}
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Drupal\Core\PageCache\RequestPolicy;
use Drupal\Core\PageCache\RequestPolicyInterface;
use Drupal\Core\Session\SessionConfigurationInterface;
use Symfony\Component\HttpFoundation\Request;
/**
* A policy allowing delivery of cached pages when there is no session open.
*
* Do not serve cached pages to authenticated users, or to anonymous users when
* the user's session is non-empty. The user's session may contain status
* messages from a form submission, the contents of a shopping cart, or other
* user-specific content that should not be cached and displayed to other users.
*/
class NoSessionOpen implements RequestPolicyInterface {
/**
* The session configuration.
*
* @var \Drupal\Core\Session\SessionConfigurationInterface
*/
protected $sessionConfiguration;
/**
* Constructs a new page cache session policy.
*
* @param \Drupal\Core\Session\SessionConfigurationInterface $session_configuration
* The session configuration.
*/
public function __construct(SessionConfigurationInterface $session_configuration) {
$this->sessionConfiguration = $session_configuration;
}
/**
* {@inheritdoc}
*/
public function check(Request $request) {
if (!$this->sessionConfiguration->hasSession($request)) {
return static::ALLOW;
}
}
}
Function Calls
None |
Stats
MD5 | a54490928ef51c9f3165a506288243be |
Eval Count | 0 |
Decode Time | 82 ms |