TwigExtension::setThemeManager

public TwigExtension::setThemeManager(ThemeManagerInterface $theme_manager) Sets the theme manager. Parameters \Drupal\Core\Theme\ThemeManagerInterface $theme_manager: The theme manager. Return value $this File core/lib/Drupal/Core/Template/TwigExtension.php, line 102 Class TwigExtension A class providing Drupal Twig extensions. Namespace Drupal\Core\Template Code public function setThemeManager(ThemeManagerInterface $theme_manager) { $this->themeManager = $theme_manager; retu

SqlContentEntityStorage::doDeleteFieldItems

protected SqlContentEntityStorage::doDeleteFieldItems($entities) Deletes entity field values from the storage. Parameters \Drupal\Core\Entity\ContentEntityInterface[] $entities: An array of entity objects to be deleted. Overrides ContentEntityStorageBase::doDeleteFieldItems File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php, line 725 Class SqlContentEntityStorage A content entity database storage implementation. Namespace Drupal\Core\Entity\Sql Code protected function do

FormStateInterface::getRedirect

public FormStateInterface::getRedirect() Gets the value to use for redirecting after the form has been executed. Return value mixed The value will be one of the following: A fully prepared \Symfony\Component\HttpFoundation\RedirectResponse. An instance of \Drupal\Core\Url to use for the redirect. NULL, to signify that no redirect was specified and that the current path should be used for the redirect. FALSE, to signify that no redirect should take place. See also \Drupal\Core\Form\FormSubmi

ConfigSingleImportForm::$data

The submitted data needing to be confirmed. Type: array File core/modules/config/src/Form/ConfigSingleImportForm.php, line 113 Class ConfigSingleImportForm Provides a form for importing a single configuration file. Namespace Drupal\config\Form Code protected $data = array();

EntityDefinitionUpdateManagerInterface::DEFINITION_DELETED

Indicates that a definition has just been deleted. File core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManagerInterface.php, line 63 Class EntityDefinitionUpdateManagerInterface Defines an interface for managing entity definition updates. Namespace Drupal\Core\Entity Code const DEFINITION_DELETED = 3;

EntityType

Defines an Entity type annotation object. Entity type plugins use an object-based annotation method, rather than an array-type annotation method (as commonly used on other annotation types). The annotation properties of entity types are found on \Drupal\Core\Entity\EntityType and are accessed using get/set methods defined in \Drupal\Core\Entity\EntityTypeInterface. Hierarchy class \Drupal\Component\Annotation\Plugin implements AnnotationInterfaceclass \Drupal\Core\Entity\Annotation\EntityType u

SearchPageInterface::isDefaultSearch

public SearchPageInterface::isDefaultSearch() Determines if this search page entity is currently the default search. Return value bool TRUE if this search page entity is the default search, FALSE otherwise. File core/modules/search/src/SearchPageInterface.php, line 34 Class SearchPageInterface Provides an interface defining a search page entity. Namespace Drupal\search Code public function isDefaultSearch();

Language::$name

The human readable English name. Type: string File core/lib/Drupal/Core/Language/Language.php, line 34 Class Language An object containing the information for an interface language. Namespace Drupal\Core\Language Code protected $name = '';

QueryFactoryInterface::get

public QueryFactoryInterface::get(EntityTypeInterface $entity_type, $conjunction) Instantiates an entity query for a given entity type. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition. string $conjunction: The operator to use to combine conditions: 'AND' or 'OR'. Return value \Drupal\Core\Entity\Query\QueryInterface An entity query for a specific configuration entity type. File core/lib/Drupal/Core/Entity/Query/QueryFactoryInterface.php, line 22

Schema::__clone

public Schema::__clone() Implements the magic __clone function. File core/lib/Drupal/Core/Database/Schema.php, line 49 Class Schema Provides a base implementation for Database Schema. Namespace Drupal\Core\Database Code public function __clone() { $this->uniqueIdentifier = uniqid('', TRUE); }