Fast404ExceptionHtmlSubscriber::__construct

public Fast404ExceptionHtmlSubscriber::__construct(ConfigFactoryInterface $config_factory, HttpKernelInterface $http_kernel) Constructs a new Fast404ExceptionHtmlSubscriber. Parameters \Drupal\Core\Config\ConfigFactoryInterface $config_factory: The configuration factory. \Symfony\Component\HttpKernel\HttpKernelInterface $http_kernel: The HTTP Kernel service. File core/lib/Drupal/Core/EventSubscriber/Fast404ExceptionHtmlSubscriber.php, line 41 Class Fast404ExceptionHtmlSubscriber High-perf

InvalidQueryException

Exception thrown if a query would be invalid. This exception is thrown e.g. when trying to have an IN condition with an empty array. Hierarchy class \Drupal\Core\Database\InvalidQueryException extends \InvalidArgumentException implements DatabaseException File core/lib/Drupal/Core/Database/InvalidQueryException.php, line 11 Namespace Drupal\Core\Database Members

UserStorageSchema

Defines the user schema handler. Hierarchy class \Drupal\Core\Entity\Sql\SqlContentEntityStorageSchema implements DynamicallyFieldableEntityStorageSchemaInterface uses DependencySerializationTraitclass \Drupal\user\UserStorageSchema File core/modules/user/src/UserStorageSchema.php, line 12 Namespace Drupal\user Members Name Modifiers Type Description DependencySerializationTrait::$_serviceIds protected property An array of service IDs keyed by property name used for ser

ReverseProxyMiddleware

Provides support for reverse proxies. Hierarchy class \Drupal\Core\StackMiddleware\ReverseProxyMiddleware implements HttpKernelInterface File core/lib/Drupal/Core/StackMiddleware/ReverseProxyMiddleware.php, line 12 Namespace Drupal\Core\StackMiddleware Members Name Modifiers Type Description HttpKernelInterface::MASTER_REQUEST constant HttpKernelInterface::SUB_REQUEST constant ReverseProxyMiddleware::$httpKernel protected property The decorated kernel.

AccountForm::getEditedFieldNames

protected AccountForm::getEditedFieldNames(FormStateInterface $form_state) Gets the names of all fields edited in the form. If the entity form customly adds some fields to the form (i.e. without using the form display), it needs to add its fields here and override flagViolations() for displaying the violations. Parameters \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value string[] An array of field names. Overrides ContentEntityForm::getEditedFieldNa

UserData::get

public UserData::get($module, $uid = NULL, $name = NULL) Returns data stored for a user account. Parameters string $module: The name of the module the data is associated with. int $uid: (optional) The user account ID the data is associated with. string $name: (optional) The name of the data key. Return value mixed|array The requested user account data, depending on the arguments passed: For $module, $name, and $uid, the stored value is returned, or NULL if no value was found. For $module and

InstallStorage::$folders

Folder map indexed by configuration name. Type: array File core/lib/Drupal/Core/Config/InstallStorage.php, line 41 Class InstallStorage Storage used by the Drupal installer. Namespace Drupal\Core\Config Code protected $folders;

ExtendableInterface::extend

public ExtendableInterface::extend($extender_name) Enhance this object by wrapping it in an extender object. Parameters $extender_name: The fully-qualified name of the extender class, without the leading '\' (for example, Drupal\my_module\myExtenderClass). The extender name will be checked against the current database connection to allow driver-specific subclasses as well, using the same logic as the query objects themselves. Return value \Drupal\Core\Database\Query\ExtendableInterface The ex

UserStorage::updateLastAccessTimestamp

public UserStorage::updateLastAccessTimestamp(AccountInterface $account, $timestamp) Update the last access timestamp of the user. Parameters \Drupal\Core\Session\AccountInterface $account: The user object. int $timestamp: The last access timestamp. Overrides UserStorageInterface::updateLastAccessTimestamp File core/modules/user/src/UserStorage.php, line 53 Class UserStorage Controller class for users. Namespace Drupal\user Code public function updateLastAccessTimestamp(AccountInterfa

FormState::setResponse

public FormState::setResponse(Response $response) Sets a response for this form. If a response is set, it will be used during processing and returned directly. The form will not be rebuilt or redirected. Parameters \Symfony\Component\HttpFoundation\Response $response: The response to return. Return value $this Overrides FormStateInterface::setResponse File core/lib/Drupal/Core/Form/FormState.php, line 986 Class FormState Stores information about the state of a form. Namespace Drupal\C