UpdateManagerInstall::$moduleHandler

The module handler. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/modules/update/src/Form/UpdateManagerInstall.php, line 23 Class UpdateManagerInstall Configure update settings for this site. Namespace Drupal\update\Form Code protected $moduleHandler;

ContentEntityBase::$defaultLangcode

Local cache for the default language code. Type: string File core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 103 Class ContentEntityBase Implements Entity Field API specific enhancements to the Entity class. Namespace Drupal\Core\Entity Code protected $defaultLangcode;

ContentEntityBase::get

public ContentEntityBase::get($field_name) Gets a field item list. Parameters string $field_name: The name of the field to get; e.g., 'title' or 'name'. Return value \Drupal\Core\Field\FieldItemListInterface The field item list, containing the field items. Throws \InvalidArgumentException If an invalid field name is given. Overrides FieldableEntityInterface::get File core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 450 Class ContentEntityBase Implements Entity Field API specific

EntityType::getGroup

public EntityType::getGroup() Gets the machine name of the entity type group. Return value string Overrides EntityTypeInterface::getGroup File core/lib/Drupal/Core/Entity/EntityType.php, line 793 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code public function getGroup() { return $this->group; }

CommentInterface::permalink

public CommentInterface::permalink() Returns the permalink URL for this comment. Return value \Drupal\Core\Url File core/modules/comment/src/CommentInterface.php, line 245 Class CommentInterface Provides an interface defining a comment entity. Namespace Drupal\comment Code public function permalink();

BlockLibraryController::$localActionManager

The local action manager. Type: \Drupal\Core\Menu\LocalActionManagerInterface File core/modules/block/src/Controller/BlockLibraryController.php, line 47 Class BlockLibraryController Provides a list of block plugins to be added to the layout. Namespace Drupal\block\Controller Code protected $localActionManager;

PoStreamInterface::setURI

public PoStreamInterface::setURI($uri) Set the URI of the PO stream that is going to be read or written. Parameters $uri: URI string to set for this stream. File core/lib/Drupal/Component/Gettext/PoStreamInterface.php, line 37 Class PoStreamInterface Common functions for file/stream based PO readers/writers. Namespace Drupal\Component\Gettext Code public function setURI($uri);

RouteProvider::routeProviderRouteCompare

protected RouteProvider::routeProviderRouteCompare(array $a, array $b) Comparison function for usort on routes. File core/lib/Drupal/Core/Routing/RouteProvider.php, line 363 Class RouteProvider A Route Provider front-end for all Drupal-stored routes. Namespace Drupal\Core\Routing Code protected function routeProviderRouteCompare(array $a, array $b) { if ($a['fit'] == $b['fit']) { return strcmp($a['name'], $b['name']); } // Reverse sort from highest to lowest fit. PHP should c

ConfigSchemaDiscovery::$schemaStorage

A storage instance for reading configuration schema data. Type: \Drupal\Core\Config\StorageInterface File core/lib/Drupal/Core/Config/Schema/ConfigSchemaDiscovery.php, line 21 Class ConfigSchemaDiscovery Allows YAML files to define config schema types. Namespace Drupal\Core\Config\Schema Code protected $schemaStorage;

EntityDisplayBase::getOriginalMode

public EntityDisplayBase::getOriginalMode() Gets the original view or form mode that was requested. Return value string The original mode that was requested. Overrides EntityDisplayInterface::getOriginalMode File core/lib/Drupal/Core/Entity/EntityDisplayBase.php, line 212 Class EntityDisplayBase Provides a common base class for entity view and form displays. Namespace Drupal\Core\Entity Code public function getOriginalMode() { return $this->get('originalMode'); }