AuthenticationCollector::$providers

Array of all registered authentication providers, keyed by ID. Type: \Drupal\Core\Authentication\AuthenticationProviderInterface[] File core/lib/Drupal/Core/Authentication/AuthenticationCollector.php, line 15 Class AuthenticationCollector A collector class for authentication providers. Namespace Drupal\Core\Authentication Code protected $providers;

AttributeValueBase::__toString

abstract AttributeValueBase::__toString() Implements the magic __toString() method. File core/lib/Drupal/Core/Template/AttributeValueBase.php, line 68 Class AttributeValueBase Defines the base class for an attribute type. Namespace Drupal\Core\Template Code abstract function __toString();

AuthenticationCollector

A collector class for authentication providers. Hierarchy class \Drupal\Core\Authentication\AuthenticationCollector implements AuthenticationCollectorInterface File core/lib/Drupal/Core/Authentication/AuthenticationCollector.php, line 8 Namespace Drupal\Core\Authentication Members Name Modifiers Type Description AuthenticationCollector::$globalProviders protected property List of providers which are allowed on routes with no _auth option. AuthenticationCollector::$prov

AuthenticationCollector::$globalProviders

List of providers which are allowed on routes with no _auth option. Type: string[] File core/lib/Drupal/Core/Authentication/AuthenticationCollector.php, line 36 Class AuthenticationCollector A collector class for authentication providers. Namespace Drupal\Core\Authentication Code protected $globalProviders;

AttributeValueBase::render

public AttributeValueBase::render() Returns a string representation of the attribute. While __toString only returns the value in a string form, render() contains the name of the attribute as well. Return value string The string representation of the attribute. File core/lib/Drupal/Core/Template/AttributeValueBase.php, line 51 Class AttributeValueBase Defines the base class for an attribute type. Namespace Drupal\Core\Template Code public function render() { $value = (string) $this;

AttributeValueBase::RENDER_EMPTY_ATTRIBUTE

Renders '$name=""' if $value is an empty string. See also \Drupal\Core\Template\AttributeValueBase::render() File core/lib/Drupal/Core/Template/AttributeValueBase.php, line 18 Class AttributeValueBase Defines the base class for an attribute type. Namespace Drupal\Core\Template Code const RENDER_EMPTY_ATTRIBUTE = TRUE;

AttributeValueBase::__construct

public AttributeValueBase::__construct($name, $value) Constructs a \Drupal\Core\Template\AttributeValueBase object. File core/lib/Drupal/Core/Template/AttributeValueBase.php, line 37 Class AttributeValueBase Defines the base class for an attribute type. Namespace Drupal\Core\Template Code public function __construct($name, $value) { $this->name = $name; $this->value = $value; }

AttributeValueBase::$value

The value itself. Type: mixed File core/lib/Drupal/Core/Template/AttributeValueBase.php, line 25 Class AttributeValueBase Defines the base class for an attribute type. Namespace Drupal\Core\Template Code protected $value;

AttributeValueBase::value

public AttributeValueBase::value() Returns the raw value. File core/lib/Drupal/Core/Template/AttributeValueBase.php, line 61 Class AttributeValueBase Defines the base class for an attribute type. Namespace Drupal\Core\Template Code public function value() { return $this->value; }

AttributeValueBase::$name

The name of the value. Type: mixed File core/lib/Drupal/Core/Template/AttributeValueBase.php, line 32 Class AttributeValueBase Defines the base class for an attribute type. Namespace Drupal\Core\Template Code protected $name;