EntityListBuilderInterface::load

public EntityListBuilderInterface::load() Loads entities of this type from storage for listing. This allows the implementation to manipulate the listing, like filtering or sorting the loaded entities. Return value \Drupal\Core\Entity\EntityInterface[] An array of entities implementing \Drupal\Core\Entity\EntityInterface. File core/lib/Drupal/Core/Entity/EntityListBuilderInterface.php, line 27 Class EntityListBuilderInterface Defines an interface to build entity listings. Namespace Drup

FormErrorHandler::$renderer

The renderer service. Type: \Drupal\Core\Render\RendererInterface File core/modules/inline_form_errors/src/FormErrorHandler.php, line 29 Class FormErrorHandler Produces inline form errors. Namespace Drupal\inline_form_errors Code protected $renderer;

PermissionHandler::systemRebuildModuleData

protected PermissionHandler::systemRebuildModuleData() Wraps system_rebuild_module_data() Return value \Drupal\Core\Extension\Extension[] File core/modules/user/src/PermissionHandler.php, line 237 Class PermissionHandler Provides the available permissions based on yml files. Namespace Drupal\user Code protected function systemRebuildModuleData() { return system_rebuild_module_data(); }

Connection::queryRange

abstract public Connection::queryRange($query, $from, $count, array $args = array(), array $options = array()) Runs a limited-range query on this database object. Use this as a substitute for ->query() when a subset of the query is to be returned. User-supplied arguments to the query should be passed in as separate parameters so that they can be properly escaped to avoid SQL injection attacks. Parameters string $query: A string containing an SQL query. int $from: The first result row to ret

SessionCacheContext::getLabel

public static SessionCacheContext::getLabel() File core/lib/Drupal/Core/Cache/Context/SessionCacheContext.php, line 17 Class SessionCacheContext Defines the SessionCacheContext service, for "per session" caching. Namespace Drupal\Core\Cache\Context Code public static function getLabel() { return t('Session'); }

Datelist::valueCallback

public static Datelist::valueCallback(&$element, $input, FormStateInterface $form_state) Validates the date type to adjust 12 hour time and prevent invalid dates. If the date is valid, the date is set in the form. Overrides FormElement::valueCallback File core/lib/Drupal/Core/Datetime/Element/Datelist.php, line 46 Class Datelist Provides a datelist element. Namespace Drupal\Core\Datetime\Element Code public static function valueCallback(&$element, $input, FormStateInterface $f

EntityDeleteFormTrait::logger

abstract protected EntityDeleteFormTrait::logger($channel) Gets the logger for a specific channel. Provided by \Drupal\Core\Form\FormBase. Parameters string $channel: The name of the channel. Return value \Psr\Log\LoggerInterface The logger for this channel. Overrides FormBase::logger File core/lib/Drupal/Core/Entity/EntityDeleteFormTrait.php, line 41 Class EntityDeleteFormTrait Provides a trait for an entity deletion form. Namespace Drupal\Core\Entity Code abstract protected functio

Drupal::unsetContainer

public static Drupal::unsetContainer() Unsets the global container. File core/lib/Drupal.php, line 116 Contains \Drupal. Class Drupal Static Service Container wrapper. Code public static function unsetContainer() { static::$container = NULL; }

KeyValueFactory::DEFAULT_SERVICE

The default service id. If the default setting does not exist, this is the default service id. File core/lib/Drupal/Core/KeyValueStore/KeyValueFactory.php, line 33 Class KeyValueFactory Defines the key/value store factory. Namespace Drupal\Core\KeyValueStore Code const DEFAULT_SERVICE = 'keyvalue.database';

FormElement::processPattern

public static FormElement::processPattern(&$element, FormStateInterface $form_state, &$complete_form) #process callback for #pattern form element property. Parameters array $element: An associative array containing the properties and children of the generic input element. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. array $complete_form: The complete form structure. Return value array The processed element. File core/lib/Drupal/Core/Render/Element/F