EnforcedResponseException::getResponse

public EnforcedResponseException::getResponse() Return the response to be enforced. @returns \Symfony\Component\HttpFoundation\Response $response The response to be enforced. File core/lib/Drupal/Core/Form/EnforcedResponseException.php, line 43 Class EnforcedResponseException Custom exception to break out of the main request and enforce a response. Namespace Drupal\Core\Form Code public function getResponse() { return $this->response; }

update_storage_clear

update_storage_clear() Invalidates stored data relating to update status. File core/modules/update/update.module, line 641 Handles updates of Drupal core and contributed projects. Code function update_storage_clear() { \Drupal::keyValueExpirable('update')->deleteAll(); \Drupal::keyValueExpirable('update_available_release')->deleteAll(); }

Database::parseConnectionInfo

final public static Database::parseConnectionInfo(array $info) Process the configuration file for database information. Parameters array $info: The database connection information, as defined in settings.php. The structure of this array depends on the database driver it is connecting to. File core/lib/Drupal/Core/Database/Database.php, line 207 Class Database Primary front-controller for the database system. Namespace Drupal\Core\Database Code final public static function parseConnect

EntityStorageInterface::getAggregateQuery

public EntityStorageInterface::getAggregateQuery($conjunction = 'AND') Gets an aggregated query instance. Parameters string $conjunction: (optional) The logical operator for the query, either: AND: all of the conditions on the query need to match. OR: at least one of the conditions on the query need to match. Return value \Drupal\Core\Entity\Query\QueryAggregateInterface The aggregated query object that can query the given entity type. See also \Drupal\Core\Entity\EntityStorageBase::getQ

FieldItemList::generateSampleItems

public FieldItemList::generateSampleItems($count = 1) Populates a specified number of field items with valid sample data. Parameters int $count: The number of items to create. Overrides FieldItemListInterface::generateSampleItems File core/lib/Drupal/Core/Field/FieldItemList.php, line 260 Class FieldItemList Represents an entity field; that is, a list of field item objects. Namespace Drupal\Core\Field Code public function generateSampleItems($count = 1) { $field_definition = $this-&

PoStreamWriter::$_uri

URI of the PO stream that is being written. Type: string File core/lib/Drupal/Component/Gettext/PoStreamWriter.php, line 15 Class PoStreamWriter Defines a Gettext PO stream writer. Namespace Drupal\Component\Gettext Code private $_uri;

LocaleLookup::$languageManager

The language manager. Type: \Drupal\Core\Language\LanguageManagerInterface File core/modules/locale/src/LocaleLookup.php, line 64 Class LocaleLookup A cache collector to allow for dynamic building of the locale cache. Namespace Drupal\locale Code protected $languageManager;

UPDATE_CURRENT

Project is up to date. File core/modules/update/update.module, line 44 Handles updates of Drupal core and contributed projects. Code const UPDATE_CURRENT = 5;

Drupal::menuTree

public static Drupal::menuTree() Returns the menu tree. Return value \Drupal\Core\Menu\MenuLinkTreeInterface The menu tree. File core/lib/Drupal.php, line 681 Contains \Drupal. Class Drupal Static Service Container wrapper. Code public static function menuTree() { return static::getContainer()->get('menu.link_tree'); }

Delete::$table

The table from which to delete. Type: string File core/lib/Drupal/Core/Database/Query/Delete.php, line 22 Class Delete General class for an abstracted DELETE operation. Namespace Drupal\Core\Database\Query Code protected $table;