ViewsData::$langcode

The current language code. Type: string File core/modules/views/src/ViewsData.php, line 74 Class ViewsData Class to manage and lazy load cached views data. Namespace Drupal\views Code protected $langcode;

FieldStorageConfig::$inDeletion

Static flag set to prevent recursion during field deletes. Type: bool File core/modules/field/src/Entity/FieldStorageConfig.php, line 220 Class FieldStorageConfig Defines the Field storage configuration entity. Namespace Drupal\field\Entity Code protected static $inDeletion = FALSE;

Query::$connectionTarget

The target of the connection object. Type: string File core/lib/Drupal/Core/Database/Query/Query.php, line 28 Class Query Base class for query builders. Namespace Drupal\Core\Database\Query Code protected $connectionTarget;

StringInterface::getLocations

public StringInterface::getLocations($check_only = FALSE) Gets location information for this string. Locations are arbitrary pairs of type and name strings, used to store information about the origins of the string, like the file name it was found on, the path on which it was discovered, etc. A string can have any number of locations since the same string may be found on different places of Drupal code and configuration. Parameters bool $check_only: (optional) Set to TRUE to get only new locat

MenuForm::form

public MenuForm::form(array $form, FormStateInterface $form_state) Gets the actual form array to be built. Overrides EntityForm::form See also \Drupal\Core\Entity\EntityForm::processForm() \Drupal\Core\Entity\EntityForm::afterBuild() File core/modules/menu_ui/src/MenuForm.php, line 95 Class MenuForm Base form for menu edit forms. Namespace Drupal\menu_ui Code public function form(array $form, FormStateInterface $form_state) { $menu = $this->entity; if ($this->operation == '

BookRemoveForm::submitForm

public BookRemoveForm::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/book/src/Form/BookRemoveForm.php, line 101 Class BookRemoveForm Remove form for book module. Namespace Drupal\book\Form Code public function submitForm(array &

SqlContentEntityStorage::getTableMapping

public SqlContentEntityStorage::getTableMapping(array $storage_definitions = NULL) Gets a table mapping for the entity's SQL tables. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface[] $storage_definitions: (optional) An array of field storage definitions to be used to compute the table mapping. Defaults to the ones provided by the entity manager. Return value \Drupal\Core\Entity\Sql\TableMappingInterface A table mapping object for the entity's tables. Overrides SqlEntityStorageIn

DbDumpApplication

Provides a command to dump a database generation script. Hierarchy class \Symfony\Component\Console\Applicationclass \Drupal\Core\Command\DbDumpApplication File core/lib/Drupal/Core/Command/DbDumpApplication.php, line 11 Namespace Drupal\Core\Command Members Name Modifiers Type Description Application::$autoExit private property Application::$catchExceptions private property Application::$commands private property Application::$defaultCommand private

UpdateProcessor::deleteQueueItem

public UpdateProcessor::deleteQueueItem($item) Deletes a finished item from the update fetch queue. Parameters \stdClass $item: The item returned by \Drupal\Core\Queue\QueueInterface::claimItem(). Overrides UpdateProcessorInterface::deleteQueueItem See also \Drupal\Core\Queue\QueueInterface::deleteItem() File core/modules/update/src/UpdateProcessor.php, line 265 Class UpdateProcessor Process project update information. Namespace Drupal\update Code public function deleteQueueItem($ite

Checkboxes

Provides a form element for a set of checkboxes. Properties: #options: An associative array whose keys are the values returned for each checkbox, and whose values are the labels next to each checkbox. The #options array cannot have a 0 key, as it would not be possible to discern checked and unchecked states. Usage example: $form['high_school']['tests_taken'] = array( '#type' => 'checkboxes', '#options' => array('SAT' => $this->t('SAT'), 'ACT' => $this->t('ACT')), '#ti