UserPasswordResetForm

Form controller for the user password forms. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\user\Form\UserPasswordResetForm File core/modules/user/src/Form/UserPasswordResetForm.php, line 13 Namespace Drupal\user\Form Members Name Modifiers Type Description DependencySerial

Cron::$logger

A logger instance. Type: \Psr\Log\LoggerInterface File core/lib/Drupal/Core/Cron.php, line 62 Class Cron The Drupal core Cron service. Namespace Drupal\Core Code protected $logger;

ConfirmDeleteMultiple

Provides the comment multiple delete confirmation form. Hierarchy class \Drupal\Core\Form\FormBase implements ContainerInjectionInterface, FormInterface uses DependencySerializationTrait, LoggerChannelTrait, LinkGeneratorTrait, RedirectDestinationTrait, UrlGeneratorTrait, StringTranslationTraitclass \Drupal\Core\Form\ConfirmFormBase implements ConfirmFormInterfaceclass \Drupal\comment\Form\ConfirmDeleteMultiple File core/modules/comment/src/Form/ConfirmDeleteMultiple.php, line 15 Namesp

LOCALE_TRANSLATION_SOURCE_COMPARE_GT

Comparison result of source files timestamps. Timestamp of source 1 is greater than the timestamp of source 2. See also _locale_translation_source_compare() File core/modules/locale/locale.translation.inc, line 33 Common API for interface translation. Code const LOCALE_TRANSLATION_SOURCE_COMPARE_GT = 1;

user_is_blocked

user_is_blocked($name) Checks for usernames blocked by user administration. Parameters string $name: A string containing a name of the user. Return value bool TRUE if the user is blocked, FALSE otherwise. File core/modules/user/user.module, line 362 Enables the user registration and login system. Code function user_is_blocked($name) { return (bool) \Drupal::entityQuery('user') ->condition('name', $name) ->condition('status', 0) ->execute(); }

UserListBuilder::buildHeader

public UserListBuilder::buildHeader() Builds the header row for the entity listing. Return value array A render array structure of header strings. Overrides EntityListBuilder::buildHeader See also \Drupal\Core\Entity\EntityListBuilder::render() File core/modules/user/src/UserListBuilder.php, line 93 Class UserListBuilder Defines a class to build a listing of user entities. Namespace Drupal\user Code public function buildHeader() { $header = array( 'username' => array(

FormatterBase::$fieldDefinition

The field definition. Type: \Drupal\Core\Field\FieldDefinitionInterface File core/lib/Drupal/Core/Field/FormatterBase.php, line 21 Class FormatterBase Base class for 'Field formatter' plugin implementations. Namespace Drupal\Core\Field Code protected $fieldDefinition;

RfcLoggerTrait::log

abstract public RfcLoggerTrait::log($level, $message, array $context = array()) File core/lib/Drupal/Core/Logger/RfcLoggerTrait.php, line 76 Class RfcLoggerTrait A copy of \Psr\Log\LoggerTrait that uses RFC 5424 compliant log levels. Namespace Drupal\Core\Logger Code abstract public function log($level, $message, array $context = array());

MaintenanceMode::exempt

public MaintenanceMode::exempt(AccountInterface $account) Determines whether a user has access to the site in maintenance mode. Parameters \Drupal\Core\Session\AccountInterface $account: The logged in user. Return value bool TRUE if the user should be exempted from maintenance mode. Overrides MaintenanceModeInterface::exempt File core/lib/Drupal/Core/Site/MaintenanceMode.php, line 51 Class MaintenanceMode Provides the default implementation of the maintenance mode service. Namespace D

Graph::$graph

Holds the directed acyclic graph. File core/lib/Drupal/Component/Graph/Graph.php, line 13 Class Graph Directed acyclic graph manipulation. Namespace Drupal\Component\Graph Code protected $graph;