ConfigImporter::$processedExtensions

List of extension changes processed by the import(). Type: array File core/lib/Drupal/Core/Config/ConfigImporter.php, line 92 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $processedExtensions;

DbDumpCommand::getTableIndexes

protected DbDumpCommand::getTableIndexes(Connection $connection, $table, &$definition) Adds primary key, unique keys, and index information to the schema. Parameters \Drupal\Core\Database\Connection $connection: The database connection to use. string $table: The table to find indexes for. array &$definition: The schema definition to modify. File core/lib/Drupal/Core/Command/DbDumpCommand.php, line 221 Class DbDumpCommand Provides a command to dump the current database to a script.

FileStorage::deleteAll

public FileStorage::deleteAll() Removes all files in this bin. Overrides PhpStorageInterface::deleteAll File core/lib/Drupal/Component/PhpStorage/FileStorage.php, line 207 Class FileStorage Stores the code as regular PHP files. Namespace Drupal\Component\PhpStorage Code public function deleteAll() { return $this->unlink($this->directory); }

ConfigManager::uninstall

public ConfigManager::uninstall($type, $name) Uninstalls the configuration of a given extension. Parameters string $type: The extension type; e.g., 'module' or 'theme'. string $name: The name of the module or theme to install configuration for. Overrides ConfigManagerInterface::uninstall File core/lib/Drupal/Core/Config/ConfigManager.php, line 193 Class ConfigManager The ConfigManager provides helper functions for the configuration system. Namespace Drupal\Core\Config Code public func

ControllerBase::keyValue

protected ControllerBase::keyValue($collection) Returns a key/value storage collection. Parameters string $collection: Name of the key/value collection to return. Return value \Drupal\Core\KeyValueStore\KeyValueStoreInterface File core/lib/Drupal/Core/Controller/ControllerBase.php, line 207 Class ControllerBase Utility base class for thin controllers. Namespace Drupal\Core\Controller Code protected function keyValue($collection) { if (!$this->keyValue) { $this->keyValue =

MenuLinkTree::load

public MenuLinkTree::load($menu_name, MenuTreeParameters $parameters) Loads a menu tree with a menu link plugin instance at each element. Parameters string $menu_name: The name of the menu. \Drupal\Core\Menu\MenuTreeParameters $parameters: The parameters to determine which menu links to be loaded into a tree. Return value \Drupal\Core\Menu\MenuLinkTreeElement[] A menu link tree. Overrides MenuLinkTreeInterface::load File core/lib/Drupal/Core/Menu/MenuLinkTree.php, line 88 Class MenuLinkTr

ActiveTheme::$engine

The engine of the theme. Type: string File core/lib/Drupal/Core/Theme/ActiveTheme.php, line 34 Class ActiveTheme Defines a theme and its information needed at runtime. Namespace Drupal\Core\Theme Code protected $engine;

PathMatcher::isFrontPage

public PathMatcher::isFrontPage() Checks if the current page is the front page. Return value bool TRUE if the current page is the front page. Overrides PathMatcherInterface::isFrontPage File core/lib/Drupal/Core/Path/PathMatcher.php, line 91 Class PathMatcher Provides a path matcher. Namespace Drupal\Core\Path Code public function isFrontPage() { // Cache the result as this is called often. if (!isset($this->isCurrentFrontPage)) { $this->isCurrentFrontPage = FALSE; /

KeyValueDatabaseExpirableFactory::$connection

The database connection. Type: \Drupal\Core\Database\Connection File core/lib/Drupal/Core/KeyValueStore/KeyValueDatabaseExpirableFactory.php, line 32 Class KeyValueDatabaseExpirableFactory Defines the key/value store factory for the database backend. Namespace Drupal\Core\KeyValueStore Code protected $connection;

DefaultTableMapping::getDedicatedRevisionTableName

public DefaultTableMapping::getDedicatedRevisionTableName(FieldStorageDefinitionInterface $storage_definition, $is_deleted = FALSE) Generates a table name for a field revision archive table. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field storage definition. bool $is_deleted: (optional) Whether the table name holding the values of a deleted field should be returned. Return value string A string containing the generated name for the database table.