ConfigEntityBase::toUrl

public ConfigEntityBase::toUrl($rel = 'edit-form', array $options = []) Gets the URL object for the entity. The entity must have an id already. Content entities usually get their IDs by saving them. URI templates might be set in the links array in an annotation, for example: links = { "canonical" = "/node/{node}", "edit-form" = "/node/{node}/edit", "version-history" = "/node/{node}/revisions" } or specified in a callback function set like: uri_callback = "comment_uri", If the path is

LocaleConfigManager::deleteTranslationOverride

protected LocaleConfigManager::deleteTranslationOverride($name, $langcode) Deletes translated configuration data. Parameters string $name: Configuration object name. string $langcode: Language code. File core/modules/locale/src/LocaleConfigManager.php, line 283 Class LocaleConfigManager Manages configuration supported in part by interface translation. Namespace Drupal\locale Code protected function deleteTranslationOverride($name, $langcode) { $this->isUpdatingFromLocale = TRUE;

NodeRevisionAccessCheck::$nodeAccess

The node access control handler. Type: \Drupal\Core\Entity\EntityAccessControlHandlerInterface File core/modules/node/src/Access/NodeRevisionAccessCheck.php, line 31 Class NodeRevisionAccessCheck Provides an access checker for node revisions. Namespace Drupal\node\Access Code protected $nodeAccess;

PathProcessorLanguage::$languageManager

Language manager for retrieving the url language type. Type: \Drupal\language\ConfigurableLanguageManagerInterface File core/modules/language/src/HttpKernel/PathProcessorLanguage.php, line 33 Class PathProcessorLanguage Processes the inbound path using path alias lookups. Namespace Drupal\language\HttpKernel Code protected $languageManager;

LocalTaskManager::$routeProvider

The route provider to load routes by name. Type: \Drupal\Core\Routing\RouteProviderInterface File core/lib/Drupal/Core/Menu/LocalTaskManager.php, line 93 Class LocalTaskManager Provides the default local task manager using YML as primary definition. Namespace Drupal\Core\Menu Code protected $routeProvider;

Item::getFeedId

public Item::getFeedId() Returns the feed id of aggregator item. Return value int The feed id. Overrides ItemInterface::getFeedId File core/modules/aggregator/src/Entity/Item.php, line 118 Class Item Defines the aggregator item entity class. Namespace Drupal\aggregator\Entity Code public function getFeedId() { return $this->get('fid')->target_id; }

RestripeCommand::$selector

A CSS selector string. If the command is a response to a request from an #ajax form element then this value can be NULL. Type: string File core/lib/Drupal/Core/Ajax/RestripeCommand.php, line 26 Class RestripeCommand AJAX command for resetting the striping on a table. Namespace Drupal\Core\Ajax Code protected $selector;

UserController::$userStorage

The user storage. Type: \Drupal\user\UserStorageInterface File core/modules/user/src/Controller/UserController.php, line 35 Class UserController Controller routines for user routes. Namespace Drupal\user\Controller Code protected $userStorage;

ConfigSync::$moduleHandler

The module handler. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/modules/config/src/Form/ConfigSync.php, line 81 Class ConfigSync Construct the storage changes in a configuration synchronization form. Namespace Drupal\config\Form Code protected $moduleHandler;

ImageStyle::buildUri

public ImageStyle::buildUri($uri) Returns the URI of this image when using this style. The path returned by this function may not exist. The default generation method only creates images when they are requested by a user's browser. Modules may implement this method to decide where to place derivatives. Parameters string $uri: The URI or path to the original image. Return value string The URI to the image derivative for this style. Overrides ImageStyleInterface::buildUri File core/modules/imag