FormState::$executed

If TRUE, the form was submitted and has been processed and executed. This property is uncacheable. Type: bool File core/lib/Drupal/Core/Form/FormState.php, line 322 Class FormState Stores information about the state of a form. Namespace Drupal\Core\Form Code protected $executed = FALSE;

BlockInterface::getVisibility

public BlockInterface::getVisibility() Returns an array of visibility condition configurations. Return value array An array of visibility condition configuration keyed by the condition ID. File core/modules/block/src/BlockInterface.php, line 60 Class BlockInterface Provides an interface defining a block entity. Namespace Drupal\block Code public function getVisibility();

PoItem::setTranslation

PoItem::setTranslation($translation) Set the translation string or the array of strings if the translation has plurals. Parameters string or array $translation: File core/lib/Drupal/Component/Gettext/PoItem.php, line 129 Class PoItem PoItem handles one translation. Namespace Drupal\Component\Gettext Code function setTranslation($translation) { $this->_translation = $translation; }

DynamicallyFieldableEntityStorageSchemaInterface

A storage schema that supports entity types with dynamic field definitions. A storage schema that implements this interface can react to the entity type's field definitions changing, due to modules being installed or uninstalled, or via field UI, or via code changes to the entity class. For example, configurable fields defined and exposed by field.module. Hierarchy interface \Drupal\Core\Entity\Schema\EntityStorageSchemaInterface; interface \Drupal\Core\Field\FieldStorageDefinitionListenerInter

ContextualLinkDefault::getRouteName

public ContextualLinkDefault::getRouteName() Returns the route name of the contextual link. Return value string The name of the route this contextual link links to. Overrides ContextualLinkInterface::getRouteName File core/lib/Drupal/Core/Menu/ContextualLinkDefault.php, line 24 Class ContextualLinkDefault Provides a common base implementation of a contextual link. Namespace Drupal\Core\Menu Code public function getRouteName() { return $this->pluginDefinition['route_name']; }

FormStateInterface::getButtons

public FormStateInterface::getButtons() Returns the submit and button elements for the form. Return value array The submit and button elements. File core/lib/Drupal/Core/Form/FormStateInterface.php, line 646 Class FormStateInterface Provides an interface for an object containing the current state of a form. Namespace Drupal\Core\Form Code public function getButtons();

Connection::query

public Connection::query($query, array $args = array(), $options = array()) Executes a query string against the database. This method provides a central handler for the actual execution of every query. All queries executed by Drupal are executed as PDO prepared statements. Parameters string|\Drupal\Core\Database\StatementInterface $query: The query to execute. In most cases this will be a string containing an SQL query with placeholders. An already-prepared instance of StatementInterface may a

ModuleInstallerInterface::uninstall

public ModuleInstallerInterface::uninstall(array $module_list, $uninstall_dependents = TRUE) Uninstalls a given list of modules. Parameters string[] $module_list: The modules to uninstall. bool $uninstall_dependents: (optional) If TRUE, dependent modules will automatically be uninstalled in the correct order. This incurs a significant performance cost, so use FALSE if you know $module_list is already complete. Return value bool FALSE if one or more dependencies are missing, TRUE otherwise. Se

FormState::$limit_validation_errors

Stores which errors should be limited during validation. An array of "sections" within which user input must be valid. If the element is within one of these sections, the error must be recorded. Otherwise, it can be suppressed. self::$limit_validation_errors can be an empty array, in which case all errors are suppressed. For example, a "Previous" button might want its submit action to be triggered even if none of the submitted values are valid. This property is uncacheable. Type: array|null Fil

BigPipe::$configFactory

The config factory. Type: \Drupal\Core\Config\ConfigFactoryInterface File core/modules/big_pipe/src/Render/BigPipe.php, line 82 Class BigPipe The default BigPipe service. Namespace Drupal\big_pipe\Render Code protected $configFactory;