KeyValueEntityStorage::MAX_ID_LENGTH

Length limit of the entity ID. File core/lib/Drupal/Core/Entity/KeyValueStore/KeyValueEntityStorage.php, line 29 Class KeyValueEntityStorage Provides a key value backend for entities. Namespace Drupal\Core\Entity\KeyValueStore Code const MAX_ID_LENGTH = 128;

ConfigSingleImportForm::$configExists

If the config exists, this is that object. Otherwise, FALSE. Type: \Drupal\Core\Config\Config|\Drupal\Core\Config\Entity\ConfigEntityInterface|bool File core/modules/config/src/Form/ConfigSingleImportForm.php, line 106 Class ConfigSingleImportForm Provides a form for importing a single configuration file. Namespace Drupal\config\Form Code protected $configExists = FALSE;

ConfigSync::processBatch

public static ConfigSync::processBatch(ConfigImporter $config_importer, $sync_step, &$context) Processes the config import batch and persists the importer. Parameters \Drupal\Core\Config\ConfigImporter $config_importer: The batch config importer object to persist. string $sync_step: The synchronization step to do. array $context: The batch context. File core/modules/config/src/Form/ConfigSync.php, line 371 Class ConfigSync Construct the storage changes in a configuration synchronizati

ConfigController::$fileDownloadController

The file download controller. Type: \Drupal\system\FileDownloadController File core/modules/config/src/Controller/ConfigController.php, line 47 Class ConfigController Returns responses for config module routes. Namespace Drupal\config\Controller Code protected $fileDownloadController;

ViewsDisplay::$no_ui

Whether the plugin should be not selectable in the UI. If it's set to TRUE, you can still use it via the API in config files. Type: bool File core/modules/views/src/Annotation/ViewsDisplay.php, line 125 Class ViewsDisplay Defines a Plugin annotation object for views display plugins. Namespace Drupal\views\Annotation Code public $no_ui;

ConfigController::downloadExport

public ConfigController::downloadExport() Downloads a tarball of the site configuration. File core/modules/config/src/Controller/ConfigController.php, line 90 Class ConfigController Returns responses for config module routes. Namespace Drupal\config\Controller Code public function downloadExport() { file_unmanaged_delete(file_directory_temp() . '/config.tar.gz'); $archiver = new ArchiveTar(file_directory_temp() . '/config.tar.gz', 'gz'); // Get raw configuration data without ove

Entity::preDelete

public static Entity::preDelete(EntityStorageInterface $storage, array $entities) Acts on entities before they are deleted and before hooks are invoked. Used before the entities are deleted and before invoking the delete hook. Parameters \Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object. \Drupal\Core\Entity\EntityInterface[] $entities: An array of entities. Overrides EntityInterface::preDelete File core/lib/Drupal/Core/Entity/Entity.php, line 435 Class Entity

ViewsExposedForm::buildForm

public ViewsExposedForm::buildForm(array $form, FormStateInterface $form_state) Form constructor. Parameters array $form: An associative array containing the structure of the form. \Drupal\Core\Form\FormStateInterface $form_state: The current state of the form. Return value array The form structure. Overrides FormInterface::buildForm File core/modules/views/src/Form/ViewsExposedForm.php, line 52 Class ViewsExposedForm Provides the views exposed form. Namespace Drupal\views\Form Code

book-node-export-html.html.twig

Default theme implementation for a single node in a printer-friendly outline. Available variables: node: Fully loaded node. depth: Depth of the current node inside the outline. title: Node title. content: Node content. children: All the child nodes recursively rendered through this file. See also template_preprocess_book_node_export_html() File core/modules/book/templates/book-node-export-html.html.twig Related topics Theme system overview Functions and templates for the user interfa

ContentEntityBase::getFieldDefinition

public ContentEntityBase::getFieldDefinition($name) Gets the definition of a contained field. Parameters string $name: The name of the field. Return value \Drupal\Core\Field\FieldDefinitionInterface|null The definition of the field or null if the field does not exist. Overrides FieldableEntityInterface::getFieldDefinition File core/lib/Drupal/Core/Entity/ContentEntityBase.php, line 552 Class ContentEntityBase Implements Entity Field API specific enhancements to the Entity class. Namesp