EntityDisplayBase::$hidden

List of components that are set to be hidden. Type: array File core/lib/Drupal/Core/Entity/EntityDisplayBase.php, line 79 Class EntityDisplayBase Provides a common base class for entity view and form displays. Namespace Drupal\Core\Entity Code protected $hidden = array();

UpdateProcessor::fetchData

public UpdateProcessor::fetchData() Attempts to drain the queue of tasks for release history data to fetch. Overrides UpdateProcessorInterface::fetchData File core/modules/update/src/UpdateProcessor.php, line 128 Class UpdateProcessor Process project update information. Namespace Drupal\update Code public function fetchData() { $end = time() + $this->updateSettings->get('fetch.timeout'); while (time() < $end && ($item = $this->fetchQueue->claimItem())) {

ViewsPager::$base

The base tables on which this pager plugin can be used. If no base table is specified the plugin can be used with all tables. Type: array File core/modules/views/src/Annotation/ViewsPager.php, line 74 Class ViewsPager Defines a Plugin annotation object for views pager plugins. Namespace Drupal\views\Annotation Code public $base;

RouteEnhancerInterface::applies

public RouteEnhancerInterface::applies(Route $route) Declares if the route enhancer applies to the given route. Parameters \Symfony\Component\Routing\Route $route: The route to consider attaching to. Return value bool TRUE if the check applies to the passed route, False otherwise. File core/lib/Drupal/Core/Routing/Enhancer/RouteEnhancerInterface.php, line 22 Class RouteEnhancerInterface A route enhance service to determine route enhance rules. Namespace Drupal\Core\Routing\Enhancer C

BinaryInterface

Interface for binary data. The plain value of binary data is a PHP file resource, see http://php.net/manual/language.types.resource.php. For setting the value a PHP file resource or a (absolute) stream resource URI may be passed. Hierarchy interface \Drupal\Core\TypedData\PrimitiveInterfaceinterface \Drupal\Core\TypedData\Type\BinaryInterface Related topics Typed Data API API for describing data based on a set of available data types. File core/lib/Drupal/Core/TypedData/Type/BinaryInterfa

MemoryStorage::set

public MemoryStorage::set($key, $value) Saves a value for a given key. Parameters string $key: The key of the data to store. mixed $value: The data to store. Overrides KeyValueStoreInterface::set File core/lib/Drupal/Core/KeyValueStore/MemoryStorage.php, line 48 Class MemoryStorage Defines a default key/value store implementation. Namespace Drupal\Core\KeyValueStore Code public function set($key, $value) { $this->data[$key] = $value; }

StringInterface

Defines the locale string interface. Hierarchy interface \Drupal\locale\StringInterface File core/modules/locale/src/StringInterface.php, line 8 Namespace Drupal\locale Members Name Modifiers Type Description StringInterface::addLocation public function Adds a location for this string. StringInterface::delete public function Deletes string object from storage. StringInterface::getId public function Gets the string unique identifier. StringInterface::get

$config_directories

The location of file system directories used for site configuration data. See also drupal_install_config_directories() File core/globals.api.php, line 67 These are the global variables that Drupal uses. Code global $config_directories;

EntityHandlerBase

Provides a base class for entity handlers. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTrait Deprecated in Drupal 8.0.x, will be removed before Drupal 9.0.0. Implement the container injection pattern of \Drupal\Core\Entity\EntityHandlerInterface::createInstance() to obtain the module handler service for your class. Related topics Entity API Describes how to define and manipulate content and configuration entities. File core/l

shortcut_current_displayed_set

shortcut_current_displayed_set($account = NULL) Returns the current displayed shortcut set for the provided user account. Parameters $account: (optional) The user account whose shortcuts will be returned. Defaults to the currently logged-in user. Return value An object representing the shortcut set that should be displayed to the current user. If the user does not have an explicit shortcut set defined, the default set is returned. File core/modules/shortcut/shortcut.module, line 164 Allows us