UrlGenerator::$routeProcessor

The route processor. Type: \Drupal\Core\RouteProcessor\OutboundRouteProcessorInterface File core/lib/Drupal/Core/Routing/UrlGenerator.php, line 46 Class UrlGenerator Generates URLs from route names and parameters. Namespace Drupal\Core\Routing Code protected $routeProcessor;

field-ui-table.html.twig

Default theme implementation to display a Field UI table. Available variables: attributes: HTML attributes to apply to the <table> tag. caption: A localized string for the <caption> tag. colgroups: Column groups. Each group contains the following properties: attributes: HTML attributes to apply to the <col> tag. Note: Drupal currently supports only one table header row, see https://www.drupal.org/node/893530 and http://api.drupal.org/api/drupal/includes!theme.inc/function/

WidgetBase::getFieldSetting

protected WidgetBase::getFieldSetting($setting_name) Returns the value of a field setting. Parameters string $setting_name: The setting name. Return value mixed The setting value. File core/lib/Drupal/Core/Field/WidgetBase.php, line 528 Class WidgetBase Base class for 'Field widget' plugin implementations. Namespace Drupal\Core\Field Code protected function getFieldSetting($setting_name) { return $this->fieldDefinition->getSetting($setting_name); }

DefaultHtmlRouteProvider::getEntityTypeIdKeyType

protected DefaultHtmlRouteProvider::getEntityTypeIdKeyType(EntityTypeInterface $entity_type) Gets the type of the ID key for a given entity type. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: An entity type. Return value string|null The type of the ID key for a given entity type, or NULL if the entity type does not support fields. File core/lib/Drupal/Core/Entity/Routing/DefaultHtmlRouteProvider.php, line 343 Class DefaultHtmlRouteProvider Provides HTML routes for enti

DynamicallyFieldableEntityStorageSchemaInterface::requiresFieldDataMigration

public DynamicallyFieldableEntityStorageSchemaInterface::requiresFieldDataMigration(FieldStorageDefinitionInterface $storage_definition, FieldStorageDefinitionInterface $original) Checks if existing data would be lost if the schema changes were applied. If there are no schema changes needed, then no data needs to be migrated, but it is not the responsibility of this function to recheck what requiresFieldStorageSchemaChanges() checks. Rather, the meaning of what this function returns when requir

MenuLinkContentInterface::requiresRediscovery

public MenuLinkContentInterface::requiresRediscovery() Returns whether the menu link requires rediscovery. If a menu-link points to a user-supplied path such as /blog then the route this resolves to needs to be rediscovered as the module or route providing a given path might change over time. For example: at the time a menu-link is created, the /blog path might be provided by a route in Views module, but later this path may be served by the Panels module. Flagging a link as requiring rediscover

AdminHtmlRouteProvider::getAddPageRoute

protected AdminHtmlRouteProvider::getAddPageRoute(EntityTypeInterface $entity_type) Gets the add page route. Built only for entity types that have bundles. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type. Return value \Symfony\Component\Routing\Route|null The generated route, if available. Overrides DefaultHtmlRouteProvider::getAddPageRoute File core/lib/Drupal/Core/Entity/Routing/AdminHtmlRouteProvider.php, line 22 Class AdminHtmlRouteProvider Provides H

TypedData::$definition

The data definition. Type: \Drupal\Core\TypedData\DataDefinitionInterface File core/lib/Drupal/Core/TypedData/TypedData.php, line 26 Class TypedData The abstract base class for typed data. Namespace Drupal\Core\TypedData Code protected $definition;

TranslatableMarkup::getArguments

public TranslatableMarkup::getArguments() Gets all arguments from this translated string. Return value mixed[] The array of arguments. File core/lib/Drupal/Core/StringTranslation/TranslatableMarkup.php, line 187 Class TranslatableMarkup Provides translatable markup class. Namespace Drupal\Core\StringTranslation Code public function getArguments() { return $this->arguments; }

FieldStorageDefinitionEvent::__construct

public FieldStorageDefinitionEvent::__construct(FieldStorageDefinitionInterface $field_storage_definition, FieldStorageDefinitionInterface $original = NULL) Constructs a new FieldStorageDefinitionEvent. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface $field_storage_definition: The field storage definition. \Drupal\Core\Field\FieldStorageDefinitionInterface $original: (optional) The original field storage definition. This should be passed only when updating the storage definition.