Composer::preAutoloadDump

public static Composer::preAutoloadDump(Event $event) Add vendor classes to Composer's static classmap. File core/lib/Drupal/Core/Composer/Composer.php, line 73 Class Composer Provides static functions for composer script events. Namespace Drupal\Core\Composer Code public static function preAutoloadDump(Event $event) { // We need the root package so we can add our classmaps to its loader. $package = $event->getComposer()->getPackage(); // We need the local repository so tha

drupal_set_installed_schema_version

drupal_set_installed_schema_version($module, $version) Updates the installed version information for a module. Parameters string $module: A module name. string $version: The new schema version. Related topics Schema API API to handle database schemas. File core/includes/schema.inc, line 105 Schema API handling functions. Code function drupal_set_installed_schema_version($module, $version) { \Drupal::keyValue('system.schema')->set($module, $version); // Reset the static cache of modu

ConfigEntityBase::$_core

Information maintained by Drupal core about configuration. Keys: default_config_hash: A hash calculated by the config.installer service and added during installation. Type: array File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 100 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code protected $_core = [];

BookOutlineStorage::loadBookChildren

public BookOutlineStorage::loadBookChildren($pid) Loads book's children using it's parent ID. Parameters int $pid: The book's parent ID. Return value array Array of loaded book items. Overrides BookOutlineStorageInterface::loadBookChildren File core/modules/book/src/BookOutlineStorage.php, line 90 Class BookOutlineStorage Defines a storage class for books outline. Namespace Drupal\book Code public function loadBookChildren($pid) { return $this->connection ->query("SELECT

EntityStorageBase::$entityTypeId

Entity type ID for this storage. Type: string File core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 24 Class EntityStorageBase A base entity storage class. Namespace Drupal\Core\Entity Code protected $entityTypeId;

ConfigEntityBase::$status

The enabled/disabled status of the configuration entity. Type: bool File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 42 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code protected $status = TRUE;

StatementPrefetch::fetchAllKeyed

public StatementPrefetch::fetchAllKeyed($key_index = 0, $value_index = 1) Returns the entire result set as a single associative array. This method is only useful for two-column result sets. It will return an associative array where the key is one column from the result set and the value is another field. In most cases, the default of the first two columns is appropriate. Note that this method will run the result set to the end. Parameters $key_index: The numeric index of the field to use as th

LocaleEvent::$original

List of string identifiers that have been updated / created. Type: string[] File core/modules/locale/src/LocaleEvent.php, line 24 Class LocaleEvent Defines a Locale event. Namespace Drupal\locale Code protected $original;

BlockListBuilder::$formBuilder

The form builder. Type: \Drupal\Core\Form\FormBuilderInterface File core/modules/block/src/BlockListBuilder.php, line 52 Class BlockListBuilder Defines a class to build a listing of block entities. Namespace Drupal\block Code protected $formBuilder;

Url::setUnroutedUrlAssembler

public Url::setUnroutedUrlAssembler(UnroutedUrlAssemblerInterface $url_assembler) Sets the unrouted URL assembler. Parameters \Drupal\Core\Utility\UnroutedUrlAssemblerInterface $url_assembler: The unrouted URL assembler. Return value $this File core/lib/Drupal/Core/Url.php, line 867 Class Url Defines an object that holds information about a URL. Namespace Drupal\Core Code public function setUnroutedUrlAssembler(UnroutedUrlAssemblerInterface $url_assembler) { $this->urlAssembler