Tableselect::processTableselect

public static Tableselect::processTableselect(&$element, FormStateInterface $form_state, &$complete_form) Creates checkbox or radio elements to populate a tableselect table. Parameters array $element: An associative array containing the properties and children of the tableselect element. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. array $complete_form: The complete form structure. Return value array The processed element. File core/lib/Drupal/Core/

UserInterface::checkExistingPassword

public UserInterface::checkExistingPassword(UserInterface $account_unchanged) Checks the existing password if set. Parameters \Drupal\user\UserInterface $account_unchanged: The unchanged user entity to compare against. Return value bool TRUE if the correct existing password was provided. See also UserInterface::setExistingPassword() File core/modules/user/src/UserInterface.php, line 185 Class UserInterface Provides an interface defining a user entity. Namespace Drupal\user Code publ

ThemeHandler::$cssCollectionOptimizer

The CSS asset collection optimizer service. Type: \Drupal\Core\Asset\AssetCollectionOptimizerInterface File core/lib/Drupal/Core/Extension/ThemeHandler.php, line 96 Class ThemeHandler Default theme handler using the config system to store installation statuses. Namespace Drupal\Core\Extension Code protected $cssCollectionOptimizer;

UrlGenerator::$decodedChars

Overrides characters that will not be percent-encoded in the path segment. The first two elements are the first two parameters of str_replace(), so if you override this variable you can also use arrays for the encoded and decoded characters. See also \Symfony\Component\Routing\Generator\UrlGenerator File core/lib/Drupal/Core/Routing/UrlGenerator.php, line 57 Class UrlGenerator Generates URLs from route names and parameters. Namespace Drupal\Core\Routing Code protected $decodedChars =

TwigTransTokenParser::checkTransString

protected TwigTransTokenParser::checkTransString(\Twig_Node $body, $lineno) Ensure that any nodes that are parsed are only of allowed types. Parameters \Twig_Node $body: The expression to check. int $lineno: The source line. Throws \Twig_Error_Syntax File core/lib/Drupal/Core/Template/TwigTransTokenParser.php, line 86 Class TwigTransTokenParser A class that defines the Twig 'trans' token parser for Drupal. Namespace Drupal\Core\Template Code protected function checkTransString(\Twig_

AccessResult::allowed

public static AccessResult::allowed() Creates an AccessResultInterface object with isAllowed() === TRUE. Return value \Drupal\Core\Access\AccessResult isAllowed() will be TRUE. File core/lib/Drupal/Core/Access/AccessResult.php, line 47 Class AccessResult Value object for passing an access result with cacheability metadata. Namespace Drupal\Core\Access Code public static function allowed() { return new AccessResultAllowed(); }

MenuTreeParameters::setMinDepth

public MenuTreeParameters::setMinDepth($min_depth) Sets a minimum depth for menu tree loading. Parameters int $min_depth: The (root-relative) minimum depth to apply. Return value $this File core/lib/Drupal/Core/Menu/MenuTreeParameters.php, line 100 Class MenuTreeParameters Provides a value object to model menu tree parameters. Namespace Drupal\Core\Menu Code public function setMinDepth($min_depth) { $this->minDepth = max(1, $min_depth); return $this; }

DiffOp::$type

File core/lib/Drupal/Component/Diff/Engine/DiffOp.php, line 11 Class DiffOp @todo document @private @subpackage DifferenceEngine Namespace Drupal\Component\Diff\Engine Code public $type;

FieldItemBase

An entity field item. Entity field items making use of this base class have to implement the static method propertyDefinitions(). Hierarchy class \Drupal\Core\TypedData\TypedData implements PluginInspectionInterface, TypedDataInterface uses StringTranslationTrait, TypedDataTraitclass \Drupal\Core\TypedData\Plugin\DataType\Map implements \IteratorAggregate, ComplexDataInterfaceclass \Drupal\Core\Field\FieldItemBase implements FieldItemInterface See also \Drupal\Core\Field\FieldItemInterfac

Registry::$registry

The complete theme registry. An array of theme registries, keyed by the theme name. Each registry is an associative array keyed by theme hook names, whose values are associative arrays containing the aggregated hook definition: type: The type of the extension the original theme hook originates from; e.g., 'module' for theme hook 'node' of Node module. name: The name of the extension the original theme hook originates from; e.g., 'node' for theme hook 'node' of Node module. theme path: The ef