DbUpdateController::$keyValueExpirableFactory

The keyvalue expirable factory. Type: \Drupal\Core\KeyValueStore\KeyValueExpirableFactoryInterface File core/modules/system/src/Controller/DbUpdateController.php, line 29 Class DbUpdateController Controller routines for database update routes. Namespace Drupal\system\Controller Code protected $keyValueExpirableFactory;

PhpTransliteration::$languageOverrides

Associative array of language-specific character transliteration tables. The outermost array keys are language codes. For each language code key, the value is an array whose keys are Unicode character codes, and whose values are the transliterations of those characters to US-ASCII. This is set up as needed in PhpTransliteration::replace() by calling PhpTransliteration::readLanguageOverrides(). Type: array File core/lib/Drupal/Component/Transliteration/PhpTransliteration.php, line 47 Class P

InvokeCommand::$selector

A CSS selector string. If the command is a response to a request from an #ajax form element then this value can be NULL. Type: string File core/lib/Drupal/Core/Ajax/InvokeCommand.php, line 28 Class InvokeCommand AJAX command for invoking an arbitrary jQuery method. Namespace Drupal\Core\Ajax Code protected $selector;

FormStateDecoratorBase::isValueEmpty

public FormStateDecoratorBase::isValueEmpty($key) Determines if a specific key has a value in the submitted form values. Parameters string|array $key: Values are stored as a multi-dimensional associative array. If $key is a string, it will return empty($values[$key]). If $key is an array, each element of the array will be used as a nested key. If $key = array('foo', 'bar') it will return empty($values['foo']['bar']). Return value bool TRUE if the $key has no value, FALSE otherwise. Overrides

NullFileCache::get

public NullFileCache::get($filepath) Gets data based on a filename. Parameters string $filepath: Path of the file that the cached data is based on. Return value mixed|null The data that was persisted with set() or NULL if there is no data or the file has been modified. Overrides FileCacheInterface::get File core/lib/Drupal/Component/FileCache/NullFileCache.php, line 30 Class NullFileCache Null implementation for the file cache. Namespace Drupal\Component\FileCache Code public functio

AccountForm::create

public static AccountForm::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 cont

AccessResult::allowedIfHasPermissions

public static AccessResult::allowedIfHasPermissions(AccountInterface $account, array $permissions, $conjunction = 'AND') Creates an allowed access result if the permissions are present, neutral otherwise. Checks the permission and adds a 'user.permissions' cache contexts. Parameters \Drupal\Core\Session\AccountInterface $account: The account for which to check permissions. array $permissions: The permissions to check. string $conjunction: (optional) 'AND' if all permissions are required, 'OR'

LanguageConfigFactoryOverride::setLanguageFromDefault

public LanguageConfigFactoryOverride::setLanguageFromDefault(LanguageDefault $language_default = NULL) Sets the language to be used in configuration overrides from the default. Parameters \Drupal\Core\Language\LanguageDefault $language_default: The default language. Return value $this Overrides LanguageConfigFactoryOverrideInterface::setLanguageFromDefault File core/modules/language/src/Config/LanguageConfigFactoryOverride.php, line 144 Class LanguageConfigFactoryOverride Provides langua

DbUpdateController::$moduleHandler

The module handler. Type: \Drupal\Core\Extension\ModuleHandlerInterface Overrides ControllerBase::$moduleHandler File core/modules/system/src/Controller/DbUpdateController.php, line 50 Class DbUpdateController Controller routines for database update routes. Namespace Drupal\system\Controller Code protected $moduleHandler;

ViewExecutable::setRequest

public ViewExecutable::setRequest(Request $request) Sets the request object. Parameters \Symfony\Component\HttpFoundation\Request $request: The request object. File core/modules/views/src/ViewExecutable.php, line 1791 Class ViewExecutable Represents a view as a whole. Namespace Drupal\views Code public function setRequest(Request $request) { $this->request = $request; }