PluralTranslatableMarkup::$count

The item count to display. Type: int File core/lib/Drupal/Core/StringTranslation/PluralTranslatableMarkup.php, line 24 Class PluralTranslatableMarkup A class to hold plural translatable markup. Namespace Drupal\Core\StringTranslation Code protected $count;

UserPasswordForm::create

public static UserPasswordForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The service

entity_revision_delete

entity_revision_delete($entity_type, $revision_id) Deletes an entity revision. \Drupal::entityTypeManager() ->getStorage($entity_type) ->deleteRevision($revision_id); Parameters string $entity_type: The entity type to load, e.g. node or user. $revision_id: The revision ID to delete. Deprecated as of Drupal 8.0.x, will be removed before Drupal 9.0.0. Use the entity storage's deleteRevision() method to delete a specific entity revision: See also \Drupal\Core\Entity\EntityTypeManag

ConditionFundamentals::__clone

public ConditionFundamentals::__clone() Implements the magic __clone function. Makes sure condition groups are cloned as well. File core/lib/Drupal/Core/Entity/Query/ConditionFundamentals.php, line 83 Class ConditionFundamentals Common code for all implementations of the entity query condition interfaces. Namespace Drupal\Core\Entity\Query Code public function __clone() { foreach ($this->conditions as $key => $condition) { if ($condition['field'] instanceof ConditionInterfa

ForumManager::$index

Cached forum index. Type: \Drupal\taxonomy\TermInterface File core/modules/forum/src/ForumManager.php, line 106 Class ForumManager Provides forum manager service. Namespace Drupal\forum Code protected $index;

UpdateRegistry::getPendingUpdateInformation

public UpdateRegistry::getPendingUpdateInformation() Returns a list of all the pending updates. Return value array[] An associative array keyed by module name which contains all information about database updates that need to be run, and any updates that are not going to proceed due to missing requirements. The subarray for each module can contain the following keys: start: The starting update that is to be processed. If this does not exist then do not process any updates for this module as t

RenderCache

Wraps the caching logic for the render caching system. @internal @todo Refactor this out into a generic service capable of cache redirects, and let RenderCache use that. https://www.drupal.org/node/2551419 Hierarchy class \Drupal\Core\Render\RenderCache implements RenderCacheInterface File core/lib/Drupal/Core/Render/RenderCache.php, line 19 Namespace Drupal\Core\Render Members Name Modifiers Type Description RenderCache::$cacheContextsManager protected property The cach

RedirectCommand::__construct

public RedirectCommand::__construct($url) Constructs an RedirectCommand object. Parameters string $url: The URL that will be loaded into window.location. This should be a full URL. File core/lib/Drupal/Core/Ajax/RedirectCommand.php, line 26 Class RedirectCommand Defines an AJAX command to set the window.location, loading that URL. Namespace Drupal\Core\Ajax Code public function __construct($url) { $this->url = $url; }

FormStateDecoratorBase::getStorage

public &FormStateDecoratorBase::getStorage() Returns the entire set of arbitrary data. Return value array The entire set of arbitrary data to store for this form. Overrides FormStateInterface::getStorage File core/lib/Drupal/Core/Form/FormStateDecoratorBase.php, line 292 Class FormStateDecoratorBase Decorates another form state. Namespace Drupal\Core\Form Code public function &getStorage() { return $this->decoratedFormState->getStorage(); }

ViewExecutable::executeDisplay

public ViewExecutable::executeDisplay($display_id = NULL, $args = array()) Executes the given display, with the given arguments. To be called externally by whatever mechanism invokes the view, such as a page callback, hook_block, etc. This function should NOT be used by anything external as this returns data in the format specified by the display. It can also have other side effects that are only intended for the 'proper' use of the display, such as setting page titles. If you simply want to vi