Mercurial > hg > isophonics-drupal-site
view core/lib/Drupal/Core/Access/AccessResultNeutral.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
line wrap: on
line source
<?php namespace Drupal\Core\Access; /** * Value object indicating a neutral access result, with cacheability metadata. */ class AccessResultNeutral extends AccessResult implements AccessResultReasonInterface { /** * The reason why access is neutral. For use in messages. * * @var string|null */ protected $reason; /** * Constructs a new AccessResultNeutral instance. * * @param null|string $reason * (optional) A message to provide details about this access result */ public function __construct($reason = NULL) { $this->reason = $reason; } /** * {@inheritdoc} */ public function isNeutral() { return TRUE; } /** * {@inheritdoc} */ public function getReason() { return $this->reason; } /** * {@inheritdoc} */ public function setReason($reason) { $this->reason = $reason; return $this; } }