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

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

InlineFormErrorsServiceProvider

Overrides the form_error_handler service to enable inline form errors. Hierarchy class \Drupal\Core\DependencyInjection\ServiceProviderBase implements ServiceModifierInterface, ServiceProviderInterfaceclass \Drupal\inline_form_errors\InlineFormErrorsServiceProvider File core/modules/inline_form_errors/src/InlineFormErrorsServiceProvider.php, line 12 Namespace Drupal\inline_form_errors Members Name Modifiers Type Description InlineFormErrorsServiceProvider::alter public fu

DateTimePlus::prepareArray

public static DateTimePlus::prepareArray($array, $force_valid_date = FALSE) Creates a complete array from a possibly incomplete array of date parts. Parameters array $array: An array of date values keyed by date part. bool $force_valid_date: (optional) Whether to force a valid date by filling in missing values with valid values or just to use empty values instead. Defaults to FALSE. Return value array A complete array of date parts. File core/lib/Drupal/Component/Datetime/DateTimePlus.php, li

DateFormatListBuilder::createInstance

public static DateFormatListBuilder::createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) Instantiates a new instance of this entity handler. This is a factory method that returns a new instance of this object. The factory should pass any needed dependencies into the constructor of this object, but not the container itself. Every call to this method must return a new instance of this object; that is, it may not implement a singleton. Parameters \Symfony\Component\Dep

dblog_form_system_logging_settings_alter

dblog_form_system_logging_settings_alter(&$form, FormStateInterface $form_state) Implements hook_form_FORM_ID_alter() for system_logging_settings(). File core/modules/dblog/dblog.module, line 97 System monitoring and logging for administrators. Code function dblog_form_system_logging_settings_alter(&$form, FormStateInterface $form_state) { $row_limits = array(100, 1000, 10000, 100000, 1000000); $form['dblog_row_limit'] = array( '#type' => 'select', '#title' => t('Dat

ImageToolkitOperation::$operation

The machine name of the image toolkit operation implemented (e.g. "crop"). Type: string File core/lib/Drupal/Core/ImageToolkit/Annotation/ImageToolkitOperation.php, line 61 Class ImageToolkitOperation Defines a Plugin annotation object for the image toolkit operation plugin. Namespace Drupal\Core\ImageToolkit\Annotation Code public $operation;

CacheableSecuredRedirectResponse::fromResponse

protected CacheableSecuredRedirectResponse::fromResponse(RedirectResponse $response) Copies over the values from the given response. Parameters \Symfony\Component\HttpFoundation\RedirectResponse $response: The redirect reponse object. Overrides SecuredRedirectResponse::fromResponse File core/lib/Drupal/Core/Routing/CacheableSecuredRedirectResponse.php, line 20 Class CacheableSecuredRedirectResponse Provides a common base class for cacheable safe redirects. Namespace Drupal\Core\Routing

SelectExtender::preExecute

public SelectExtender::preExecute(SelectInterface $query = NULL) Generic preparation and validation for a SELECT query. Return value TRUE if the validation was successful, FALSE if not. Overrides SelectInterface::preExecute File core/lib/Drupal/Core/Database/Query/SelectExtender.php, line 297 Class SelectExtender The base extender class for Select queries. Namespace Drupal\Core\Database\Query Code public function preExecute(SelectInterface $query = NULL) { // If no query object is p

DatabaseStorage::encode

public DatabaseStorage::encode($data) Encodes configuration data into the storage-specific format. This is a publicly accessible static method to allow for alternative usages in data conversion scripts and also tests. Parameters array $data: The configuration data to encode. Return value string The encoded configuration data. Overrides StorageInterface::encode File core/lib/Drupal/Core/Config/DatabaseStorage.php, line 247 Class DatabaseStorage Defines the Database storage. Namespace D