AdminPathConfigEntityConverter::convert

public AdminPathConfigEntityConverter::convert($value, $definition, $name, array $defaults) Converts path variables to their corresponding objects. Parameters mixed $value: The raw value. mixed $definition: The parameter definition provided in the route options. string $name: The name of the parameter. array $defaults: The route defaults array. Return value mixed|null The converted parameter value. Overrides EntityConverter::convert File core/lib/Drupal/Core/ParamConverter/AdminPathConfigEnti

Select::forUpdate

public Select::forUpdate($set = TRUE) Add FOR UPDATE to the query. FOR UPDATE prevents the rows retrieved by the SELECT statement from being modified or deleted by other transactions until the current transaction ends. Other transactions that attempt UPDATE, DELETE, or SELECT FOR UPDATE of these rows will be blocked until the current transaction ends. Parameters $set: IF TRUE, FOR UPDATE will be added to the query, if FALSE then it won't. Return value \Drupal\Core\Database\Query\ConditionInte

EntityModerationRouteProvider::$entityFieldManager

The entity manager. Type: \Drupal\Core\Entity\EntityFieldManagerInterface File core/modules/content_moderation/src/Routing/EntityModerationRouteProvider.php, line 28 Class EntityModerationRouteProvider Dynamic route provider for the Content moderation module. Namespace Drupal\content_moderation\Routing Code protected $entityFieldManager;

Insert::from

public Insert::from(SelectInterface $query) Sets the fromQuery on this InsertQuery object. Parameters \Drupal\Core\Database\Query\SelectInterface $query: The query to fetch the rows that should be inserted. Return value \Drupal\Core\Database\Query\Insert The called object. File core/lib/Drupal/Core/Database/Query/Insert.php, line 50 Class Insert General class for an abstracted INSERT query. Namespace Drupal\Core\Database\Query Code public function from(SelectInterface $query) { $th

ContactMessageAccessControlHandler

Defines the access control handler for the message form entity type. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityAccessControlHandler implements EntityAccessControlHandlerInterfaceclass \Drupal\contact\ContactMessageAccessControlHandler See also \Drupal\contact\Entity\Message. File core/modules/contact/src/ContactMessageAccessControlHandler.php, line 14 Namespace Drupal\contact Members

FieldFormCommand::__construct

public FieldFormCommand::__construct($data) Constructs a FieldFormCommand object. Parameters string $data: The data to pass on to the client side. Overrides BaseCommand::__construct File core/modules/quickedit/src/Ajax/FieldFormCommand.php, line 19 Class FieldFormCommand AJAX command for passing a rendered field form to Quick Edit's JavaScript app. Namespace Drupal\quickedit\Ajax Code public function __construct($data) { parent::__construct('quickeditFieldForm', $data); }

ViewUIConverter::$tempStoreFactory

Stores the tempstore factory. Type: \Drupal\user\SharedTempStoreFactory File core/modules/views_ui/src/ParamConverter/ViewUIConverter.php, line 37 Class ViewUIConverter Provides upcasting for a view entity to be used in the Views UI. Namespace Drupal\views_ui\ParamConverter Code protected $tempStoreFactory;

BigPipeStrategy::processPlaceholders

public BigPipeStrategy::processPlaceholders(array $placeholders) Processes placeholders to render them with different strategies. Parameters array $placeholders: The placeholders to process, with the keys being the markup for the placeholders and the values the corresponding render array describing the data to be rendered. Return value array The resulting placeholders, with a subset of the keys of $placeholders (and those being the markup for the placeholders) but with the corresponding rende

DefaultTableMapping::getExtraColumns

public DefaultTableMapping::getExtraColumns($table_name) Gets a list of extra database columns, which store denormalized data. These database columns do not belong to any entity fields. Any normalized data that is stored should be associated with an entity field. Parameters string $table_name: The name of the table to return the columns for. Return value string[] An array of column names for the given table. Overrides TableMappingInterface::getExtraColumns File core/lib/Drupal/Core/Entity/Sql

PathMatcher::$regexes

The cache of regular expressions. Type: array File core/lib/Drupal/Core/Path/PathMatcher.php, line 33 Class PathMatcher Provides a path matcher. Namespace Drupal\Core\Path Code protected $regexes;