PathFormBase::submitForm

public PathFormBase::submitForm(array &$form, FormStateInterface $form_state) Form submission handler. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Overrides FormInterface::submitForm File core/modules/path/src/Form/PathFormBase.php, line 203 Class PathFormBase Provides a base class for path add/edit forms. Namespace Drupal\path\Form Code public function submitFor

QueueGarbageCollectionInterface

If the Drupal 'queue' service implements this interface, the garbageCollection() method will be called during cron. Hierarchy interface \Drupal\Core\Queue\QueueGarbageCollectionInterface See also system_cron() File core/lib/Drupal/Core/Queue/QueueGarbageCollectionInterface.php, line 11 Namespace Drupal\Core\Queue Members Name Modifiers Type Description QueueGarbageCollectionInterface::garbageCollection public function Cleans queues of garbage.

ContactMessageAccessControlHandler

Defines the access control handler for the message form entity type. Hierarchy class \Drupal\Core\Entity\EntityHandlerBase uses DependencySerializationTrait, StringTranslationTraitclass \Drupal\Core\Entity\EntityAccessControlHandler implements EntityAccessControlHandlerInterfaceclass \Drupal\contact\ContactMessageAccessControlHandler See also \Drupal\contact\Entity\Message. File core/modules/contact/src/ContactMessageAccessControlHandler.php, line 14 Namespace Drupal\contact Members

ERROR_REPORTING_HIDE

Error reporting level: display no errors. File core/includes/bootstrap.inc, line 38 Functions that need to be loaded on every Drupal request. Code const ERROR_REPORTING_HIDE = 'hide';

Actions

Provides a wrapper element to group one or more buttons in a form. Use of a single Actions element with an array key of 'actions' to group the primary submit buttons on a form helps to ensure proper styling in themes, and enables other modules to properly alter a form's actions. Usage example: $form['actions'] = array('#type' => 'actions'); $form['actions']['submit'] = array( '#type' => 'submit', '#value' => $this->t('Save'), ); Plugin annotation @RenderElement("actions") Hier

Container::isScopeActive

public Container::isScopeActive($name) File core/lib/Drupal/Component/DependencyInjection/Container.php, line 639 Class Container Provides a container optimized for Drupal's needs. Namespace Drupal\Component\DependencyInjection Code public function isScopeActive($name) { @trigger_error('The ' . __METHOD__ . ' method is deprecated since version 2.8 and will be removed in 3.0.', E_USER_DEPRECATED); throw new \BadMethodCallException(sprintf("'%s' is not supported by Drupal 8.", __FUN

MapDataDefinition::create

public static MapDataDefinition::create($type = 'map') Creates a new map definition. Parameters string $type: (optional) The data type of the map. Defaults to 'map'. Return value static Overrides DataDefinition::create File core/lib/Drupal/Core/TypedData/MapDataDefinition.php, line 25 Class MapDataDefinition A typed data definition class for defining maps. Namespace Drupal\Core\TypedData Code public static function create($type = 'map') { $definition['type'] = $type; return new s

LanguageConverter::$languageManager

The language manager. Type: \Drupal\Core\Language\LanguageManagerInterface File core/modules/language/src/LanguageConverter.php, line 19 Class LanguageConverter Converts parameters for upcasting entity IDs to full objects. Namespace Drupal\language Code protected $languageManager;

ConfigurableLanguageManagerInterface::rebuildServices

public static ConfigurableLanguageManagerInterface::rebuildServices() Rebuild the container to register services needed on multilingual sites. File core/modules/language/src/ConfigurableLanguageManagerInterface.php, line 16 Class ConfigurableLanguageManagerInterface Common interface for language negotiation services. Namespace Drupal\language Code public static function rebuildServices();

QueueWorkerManager::createInstance

public QueueWorkerManager::createInstance($plugin_id, array $configuration = []) Return value \Drupal\Core\Queue\QueueWorkerInterface Overrides PluginManagerBase::createInstance File core/lib/Drupal/Core/Queue/QueueWorkerManager.php, line 56 Class QueueWorkerManager Defines the queue worker manager. Namespace Drupal\Core\Queue Code public function createInstance($plugin_id, array $configuration = []) { return parent::createInstance($plugin_id, $configuration); }