ModulesUninstallConfirmForm::$moduleInstaller

The module installer service. Type: \Drupal\Core\Extension\ModuleInstallerInterface File core/modules/system/src/Form/ModulesUninstallConfirmForm.php, line 26 Class ModulesUninstallConfirmForm Builds a confirmation form to uninstall selected modules. Namespace Drupal\system\Form Code protected $moduleInstaller;

ImageInterface::getToolkitId

public ImageInterface::getToolkitId() Returns the ID of the image toolkit used for this image file. Return value string The ID of the image toolkit. File core/lib/Drupal/Core/Image/ImageInterface.php, line 74 Class ImageInterface Provides an interface for image objects. Namespace Drupal\Core\Image Code public function getToolkitId();

FieldStorageConfigStorage::loadByProperties

public FieldStorageConfigStorage::loadByProperties(array $conditions = array()) Load entities by their property values. Parameters array $values: An associative array where the keys are the property names and the values are the values those properties must have. Return value \Drupal\Core\Entity\EntityInterface[] An array of entity objects indexed by their ids. Overrides EntityStorageBase::loadByProperties File core/modules/field/src/FieldStorageConfigStorage.php, line 97 Class FieldStorag

AccountForm::__construct

public AccountForm::__construct(EntityManagerInterface $entity_manager, LanguageManagerInterface $language_manager, QueryFactory $entity_query) Constructs a new EntityForm object. Parameters \Drupal\Core\Entity\EntityManagerInterface $entity_manager: The entity manager. \Drupal\Core\Language\LanguageManagerInterface $language_manager: The language manager. \Drupal\Core\Entity\Query\QueryFactory $entity_query: The entity query factory. Overrides ContentEntityForm::__construct File core/modules/

ConfigInstaller::$sourceStorage

The configuration storage that provides the default configuration. Type: \Drupal\Core\Config\StorageInterface File core/lib/Drupal/Core/Config/ConfigInstaller.php, line 54 Class ConfigInstaller Namespace Drupal\Core\Config Code protected $sourceStorage;

PhpTransliteration::__construct

public PhpTransliteration::__construct($data_directory = NULL, ModuleHandlerInterface $module_handler) Constructs a PhpTransliteration object. Parameters string $data_directory: (optional) The directory where data files reside. If omitted, defaults to subdirectory 'data' underneath the directory where the class's PHP file resides. \Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The module handler to execute the transliteration_overrides alter hook. Overrides PhpTransliteration::

node_title_list

node_title_list(StatementInterface $result, $title = NULL) Gathers a listing of links to nodes. Parameters \Drupal\Core\Database\StatementInterface $result: A database result object from a query to fetch node entities. If your query joins the {comment_entity_statistics} table so that the comment_count field is available, a title attribute will be added to show the number of comments. $title: (optional) A heading for the resulting list. Return value array|false A renderable array containing a

FileTranslation::$directory

Directory to find translation files in the file system. Type: string File core/lib/Drupal/Core/StringTranslation/Translator/FileTranslation.php, line 23 Class FileTranslation File based string translation. Namespace Drupal\Core\StringTranslation\Translator Code protected $directory;

Entity::create

public static Entity::create(array $values = array()) Constructs a new entity object, without permanently saving it. Parameters array $values: (optional) An array of values to set, keyed by property name. If the entity type has bundles, the bundle key has to be specified. Return value static The entity object. Overrides EntityInterface::create File core/lib/Drupal/Core/Entity/Entity.php, line 513 Class Entity Defines a base entity class. Namespace Drupal\Core\Entity Code public stati

DynamicPageCacheSubscriber

Returns cached responses as early and avoiding as much work as possible. Dynamic Page Cache is able to cache so much because it utilizes cache contexts: the cache contexts that are present capture the variations of every component of the page. That, combined with the fact that cacheability metadata is bubbled, means that the cache contexts at the page level represent the complete set of contexts that the page varies by. The reason Dynamic Page Cache is implemented as two event subscribers (a la