UpdateReady::__construct

public UpdateReady::__construct($root, ModuleHandlerInterface $module_handler, StateInterface $state, $site_path) Constructs a new UpdateReady object. Parameters string $root: The root location under which updated projects will be saved. \Drupal\Core\Extension\ModuleHandlerInterface $module_handler: The object that manages enabled modules in a Drupal installation. \Drupal\Core\State\StateInterface $state: The state key value store. string $site_path: The site path. File core/modules/update/src

ViewUI::loadMultiple

public static ViewUI::loadMultiple(array $ids = NULL) Loads one or more entities. Parameters array $ids: An array of entity IDs, or NULL to load all entities. Return value static[] An array of entity objects indexed by their IDs. Overrides EntityInterface::loadMultiple File core/modules/views_ui/src/ViewUI.php, line 964 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public static function loadMultiple(array $ids = NULL) { return View::loadMultiple

CommentStorageInterface::getNewCommentPageNumber

public CommentStorageInterface::getNewCommentPageNumber($total_comments, $new_comments, FieldableEntityInterface $entity, $field_name) Calculates the page number for the first new comment. Parameters int $total_comments: The total number of comments that the entity has. int $new_comments: The number of new comments that the entity has. \Drupal\Core\Entity\FieldableEntityInterface $entity: The entity to which the comments belong. string $field_name: The field name on the entity to which comment

ViewExecutable::getPager

public ViewExecutable::getPager() Gets the current pager plugin. Return value \Drupal\views\Plugin\views\pager\PagerPluginBase The current pager plugin. File core/modules/views/src/ViewExecutable.php, line 900 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public function getPager() { if (!isset($this->pager)) { $this->initPager(); } return $this->pager; }

BaseCommand

Base command that only exists to simplify AJAX commands. Hierarchy class \Drupal\Core\Ajax\BaseCommand implements CommandInterface File core/lib/Drupal/Core/Ajax/BaseCommand.php, line 8 Namespace Drupal\Core\Ajax Members Name Modifiers Type Description BaseCommand::$command protected property The name of the command. BaseCommand::$data protected property The data to pass on to the client side. BaseCommand::render public function Return an array to be run

StatementEmpty::current

public StatementEmpty::current() File core/lib/Drupal/Core/Database/StatementEmpty.php, line 116 Class StatementEmpty Empty implementation of a database statement. Namespace Drupal\Core\Database Code public function current() { return NULL; }

ContentEntityBase::$translatableEntityKeys

Holds translatable entity keys such as the label. Type: array File core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 149 Class ContentEntityBase Implements Entity Field API specific enhancements to the Entity class. Namespace Drupal\Core\Entity Code protected $translatableEntityKeys = array();

LanguageNegotiatorInterface::initializeType

public LanguageNegotiatorInterface::initializeType($type) Initializes the specified language type. Parameters string $type: The language type to be initialized. Return value \Drupal\Core\Language\LanguageInterface[] Returns an array containing a single language keyed by the language negotiation method ID used to determine the language of the specified type. If negotiation is not possible the default language is returned. File core/modules/language/src/LanguageNegotiatorInterface.php, line 131

NodeAddAccessCheck::$entityManager

The entity manager. Type: \Drupal\Core\Entity\EntityManagerInterface File core/modules/node/src/Access/NodeAddAccessCheck.php, line 23 Class NodeAddAccessCheck Determines access to for node add pages. Namespace Drupal\node\Access Code protected $entityManager;

RendererInterface

Defines an interface for turning a render array into a string. Hierarchy interface \Drupal\Core\Render\RendererInterface File core/lib/Drupal/Core/Render/RendererInterface.php, line 8 Namespace Drupal\Core\Render Members Name Modifiers Type Description RendererInterface::addCacheableDependency public function Adds a dependency on an object: merges its cacheability metadata. RendererInterface::executeInRenderContext public function Executes a callable within a ren