ConfigImportForm::$configStorage

The configuration storage. Type: \Drupal\Core\Config\StorageInterface File core/modules/config/src/Form/ConfigImportForm.php, line 21 Class ConfigImportForm Defines the configuration import form. Namespace Drupal\config\Form Code protected $configStorage;

Tasks::$results

Results from tasks. Type: array File core/lib/Drupal/Core/Database/Install/Tasks.php, line 77 Class Tasks Database installer structure. Namespace Drupal\Core\Database\Install Code protected $results = array( 'fail' => array(), 'pass' => array(), );

StringBase::hasLocation

public StringBase::hasLocation($type, $name) Checks whether the string has a given location. Parameters string $type: Location type. string $name: Location name. Return value bool TRUE if the string has a location with this type and name. Overrides StringInterface::hasLocation File core/modules/locale/src/StringBase.php, line 173 Class StringBase Defines the locale string base class. Namespace Drupal\locale Code public function hasLocation($type, $name) { $locations = $this->get

install_check_localization_server

install_check_localization_server($uri) Checks if the localization server can be contacted. Parameters string $uri: The URI to contact. Return value string TRUE if the URI was contacted successfully, FALSE if not. File core/includes/install.core.inc, line 1391 API functions for installing Drupal. Code function install_check_localization_server($uri) { try { \Drupal::httpClient()->head($uri); return TRUE; } catch (RequestException $e) { return FALSE; } }

ItemInterface::getLink

public ItemInterface::getLink() Returns the link to the feed item. Return value string The link to the feed item. File core/modules/aggregator/src/ItemInterface.php, line 56 Class ItemInterface Provides an interface defining an aggregator item entity. Namespace Drupal\aggregator Code public function getLink();

BigPipeStrategy::NOJS_COOKIE

BigPipe no-JS cookie name. File core/modules/big_pipe/src/Render/Placeholder/BigPipeStrategy.php, line 65 Class BigPipeStrategy Defines the BigPipe placeholder strategy, to send HTML in chunks. Namespace Drupal\big_pipe\Render\Placeholder Code const NOJS_COOKIE = 'big_pipe_nojs';

RouteSubscriberBase::getSubscribedEvents

public static RouteSubscriberBase::getSubscribedEvents() Returns an array of event names this subscriber wants to listen to. The array keys are event names and the value can be: The method name to call (priority defaults to 0) An array composed of the method name to call and the priority An array of arrays composed of the method names to call and respective priorities, or 0 if unset For instance: array('eventName' => 'methodName') array('eventName' => array('methodName', $priority))

LocaleConfigSubscriber

Updates strings translation when configuration translations change. This reacts to the updates of translated active configuration and configuration language overrides. When those updates involve configuration which was available as default configuration, we need to feed back changes to any item which was originally part of that configuration to the interface translation storage. Those updated translations are saved as customized, so further community translation updates will not undo user chang

ListDataDefinition::getDataType

public ListDataDefinition::getDataType() Returns the data type of the data. Return value string The data type. Overrides DataDefinition::getDataType File core/lib/Drupal/Core/TypedData/ListDataDefinition.php, line 58 Class ListDataDefinition A typed data definition class for defining lists. Namespace Drupal\Core\TypedData Code public function getDataType() { return 'list'; }

ColorConfigCacheInvalidator::$cacheTagsInvalidator

The cache tags invalidator. Type: \Drupal\Core\Cache\CacheTagsInvalidatorInterface File core/modules/color/src/EventSubscriber/ColorConfigCacheInvalidator.php, line 20 Class ColorConfigCacheInvalidator A subscriber invalidating cache tags when color config objects are saved. Namespace Drupal\color\EventSubscriber Code protected $cacheTagsInvalidator;