Config::getOriginal

public Config::getOriginal($key = '', $apply_overrides = TRUE) Gets original data from this configuration object. Original data is the data as it is immediately after loading from configuration storage before any changes. If this is a new configuration object it will be an empty array. Parameters string $key: A string that maps to a key within the configuration data. bool $apply_overrides: Apply any overrides to the original data. Defaults to TRUE. Return value mixed The data that was request

InPlaceEditor::$module

The name of the module providing the in-place editor plugin. Type: string File core/modules/quickedit/src/Annotation/InPlaceEditor.php, line 35 Class InPlaceEditor Defines an InPlaceEditor annotation object. Namespace Drupal\quickedit\Annotation Code public $module;

RouteProcessorManager::getOutbound

protected RouteProcessorManager::getOutbound() Returns the sorted array of outbound processors. Return value array An array of processor objects. File core/lib/Drupal/Core/RouteProcessor/RouteProcessorManager.php, line 62 Class RouteProcessorManager Route processor manager. Namespace Drupal\Core\RouteProcessor Code protected function getOutbound() { if (empty($this->sortedOutbound)) { $this->sortedOutbound = $this->sortProcessors(); } return $this->sortedOutboun

PoItem::setContext

PoItem::setContext($context) Set the context this translation belongs to. Parameters string $context: File core/lib/Drupal/Component/Gettext/PoItem.php, line 89 Class PoItem PoItem handles one translation. Namespace Drupal\Component\Gettext Code function setContext($context) { $this->_context = $context; }

PoItem::$_langcode

The language code this translation is in. @car string File core/lib/Drupal/Component/Gettext/PoItem.php, line 18 Class PoItem PoItem handles one translation. Namespace Drupal\Component\Gettext Code private $_langcode;

BookManager::doBookTreeBuild

protected BookManager::doBookTreeBuild($bid, array $parameters = array()) Builds a book tree. This function may be used build the data for a menu tree only, for example to further massage the data manually before further processing happens. _menu_tree_check_access() needs to be invoked afterwards. Parameters int $bid: The book ID to find links for. array $parameters: (optional) An associative array of build parameters. Possible keys: expanded: An array of parent link IDs to return only book l

TypedConfigManager::getDefinition

public TypedConfigManager::getDefinition($base_plugin_id, $exception_on_invalid = TRUE) Gets a specific plugin definition. Parameters string $plugin_id: A plugin id. bool $exception_on_invalid: (optional) If TRUE, an invalid plugin ID will throw an exception. Return value mixed A plugin definition, or NULL if the plugin ID is invalid and $exception_on_invalid is FALSE. Throws \Drupal\Component\Plugin\Exception\PluginNotFoundException Thrown if $plugin_id is invalid and $exception_on_invalid

AliasStorage::TABLE

The table for the url_alias storage. File core/lib/Drupal/Core/Path/AliasStorage.php, line 24 Class AliasStorage Provides a class for CRUD operations on path aliases. Namespace Drupal\Core\Path Code const TABLE = 'url_alias';

DiffFormatter::_added

protected DiffFormatter::_added($lines) File core/lib/Drupal/Component/Diff/DiffFormatter.php, line 173 Class DiffFormatter A class to format Diffs Namespace Drupal\Component\Diff Code protected function _added($lines) { $this->_lines($lines, '>'); }

MemoryBackend::delete

public MemoryBackend::delete($cid) Deletes an item from the cache. If the cache item is being deleted because it is no longer "fresh", you may consider using invalidate() instead. This allows callers to retrieve the invalid item by calling get() with $allow_invalid set to TRUE. In some cases an invalid item may be acceptable rather than having to rebuild the cache. Parameters string $cid: The cache ID to delete. Overrides CacheBackendInterface::delete See also \Drupal\Core\Cache\CacheBackendI