FormSubmitterInterface::executeSubmitHandlers

public FormSubmitterInterface::executeSubmitHandlers(&$form, FormStateInterface &$form_state) Executes custom submission handlers for a given form. Button-specific handlers are checked first. If none exist, the function falls back to form-level handlers. Parameters $form: An associative array containing the structure of the form. $form_state: The current state of the form. If the user submitted the form by clicking a button with custom handler functions defined, those handlers will be

Connection::$tableDropped

Whether or not a table has been dropped this request: the destructor will only try to get rid of unnecessary databases if there is potential of them being empty. This variable is set to public because Schema needs to access it. However, it should not be manually set. Type: bool File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 44 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code public $tabl

Transaction::name

public Transaction::name() Retrieves the name of the transaction or savepoint. File core/lib/Drupal/Core/Database/Transaction.php, line 76 Class Transaction A wrapper class for creating and managing database transactions. Namespace Drupal\Core\Database Code public function name() { return $this->name; }

Views::$translationManager

The translation manager. Type: \Drupal\Core\StringTranslation\TranslationInterface File core/modules/views/src/Views.php, line 15 Class Views Static service container wrapper for views. Namespace Drupal\views Code protected static $translationManager;

MenuLinkResetForm::getConfirmText

public MenuLinkResetForm::getConfirmText() Returns a caption for the button that confirms the action. Return value string The form confirmation text. Overrides ConfirmFormBase::getConfirmText File core/modules/menu_ui/src/Form/MenuLinkResetForm.php, line 84 Class MenuLinkResetForm Defines a confirmation form for resetting a single modified menu link. Namespace Drupal\menu_ui\Form Code public function getConfirmText() { return $this->t('Reset'); }

ContentEntityStorageBase::doSave

protected ContentEntityStorageBase::doSave($id, EntityInterface $entity) Performs storage-specific saving of the entity. Parameters int|string $id: The original entity ID. \Drupal\Core\Entity\EntityInterface $entity: The entity to save. Return value bool|int If the record insert or update failed, returns FALSE. If it succeeded, returns SAVED_NEW or SAVED_UPDATED, depending on the operation performed. Overrides EntityStorageBase::doSave File core/lib/Drupal/Core/Entity/ContentEntityStorageBase

EntityDefinitionUpdateManager::installEntityType

public EntityDefinitionUpdateManager::installEntityType(EntityTypeInterface $entity_type) Installs a new entity type definition. Parameters \Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition. Overrides EntityDefinitionUpdateManagerInterface::installEntityType File core/lib/Drupal/Core/Entity/EntityDefinitionUpdateManager.php, line 133 Class EntityDefinitionUpdateManager Manages entity definition updates. Namespace Drupal\Core\Entity Code public function i

CommentTypeInterface::setDescription

public CommentTypeInterface::setDescription($description) Sets the description of the comment type. Parameters string $description: The new description. Return value $this File core/modules/comment/src/CommentTypeInterface.php, line 28 Class CommentTypeInterface Provides an interface defining a comment type entity. Namespace Drupal\comment Code public function setDescription($description);

StaticMenuLinkOverrides::encodeId

protected static StaticMenuLinkOverrides::encodeId($id) Encodes the ID by replacing dots with double underscores. This is done because config schema uses dots for its internal type hierarchy. Double underscores are converted to triple underscores to avoid accidental conflicts. Parameters string $id: The menu plugin ID. Return value string The menu plugin ID with double underscore instead of dots. File core/lib/Drupal/Core/Menu/StaticMenuLinkOverrides.php, line 175 Class StaticMenuLinkOver

DrupalKernel::shutdown

public DrupalKernel::shutdown() Shuts down the kernel. Overrides DrupalKernelInterface::shutdown File core/lib/Drupal/Core/DrupalKernel.php, line 471 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code public function shutdown() { if (FALSE === $this->booted) { return; } $this->container->get('stream_wrapper_manager')->unregister(); $this->booted = FALSE; $this->container = NULL; $this->moduleList = NUL