SqlContentEntityStorageSchema::performFieldSchemaOperation

protected SqlContentEntityStorageSchema::performFieldSchemaOperation($operation, FieldStorageDefinitionInterface $storage_definition, FieldStorageDefinitionInterface $original = NULL) Performs the specified operation on a field. This figures out whether the field is stored in a dedicated or shared table and forwards the call to the proper handler. Parameters string $operation: The name of the operation to be performed. \Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The

LOCALE_TRANSLATION_USE_SOURCE_REMOTE_AND_LOCAL

Translation update mode: Use both remote and local files. When checking for available translation updates, both local and remote files will be checked. File core/modules/locale/locale.module, line 95 Enables the translation of the user interface to languages other than English. Code const LOCALE_TRANSLATION_USE_SOURCE_REMOTE_AND_LOCAL = 'remote_and_local';

file_directory_os_temp

file_directory_os_temp() Discovers a writable system-appropriate temporary directory. Return value mixed A string containing the path to the temporary directory. Deprecated in Drupal 8.3.x-dev, will be removed before Drupal 9.0.0. Use \Drupal\Component\FileSystem\FileSystem::getOsTemporaryDirectory(). Related topics File interface Common file handling functions. File core/includes/file.inc, line 1222 API for handling file uploads and server file management. Code function file_directory_

Url::setOption

public Url::setOption($name, $value) Sets a specific option. See \Drupal\Core\Url::fromUri() for details on the options. Parameters string $name: The name of the option. mixed $value: The option value. Return value $this File core/lib/Drupal/Core/Url.php, line 672 Class Url Defines an object that holds information about a URL. Namespace Drupal\Core Code public function setOption($name, $value) { $this->options[$name] = $value; return $this; }

BigPipeStrategy::generateBigPipePlaceholderId

protected static BigPipeStrategy::generateBigPipePlaceholderId($original_placeholder, array $placeholder_render_array) Generates a BigPipe placeholder ID. Parameters string $original_placeholder: The original placeholder. array $placeholder_render_array: The render array for a placeholder. Return value string The generated BigPipe placeholder ID. File core/modules/big_pipe/src/Render/Placeholder/BigPipeStrategy.php, line 257 Class BigPipeStrategy Defines the BigPipe placeholder strategy,

taxonomy_build_node_index

taxonomy_build_node_index($node) Builds and inserts taxonomy index entries for a given node. The index lists all terms that are related to a given node entity, and is therefore maintained at the entity level. Parameters \Drupal\node\Entity\Node $node: The node entity. Related topics Taxonomy indexing Functions to maintain taxonomy indexing. File core/modules/taxonomy/taxonomy.module, line 501 Enables the organization of content into categories. Code function taxonomy_build_node_index($node

PoHeader::$_languageName

Human readable language name. Type: string File core/lib/Drupal/Component/Gettext/PoHeader.php, line 58 Class PoHeader Gettext PO header handler. Namespace Drupal\Component\Gettext Code private $_languageName;

ImageStyleStorage::setReplacementId

public ImageStyleStorage::setReplacementId($name, $replacement) Stores a replacement ID for an image style being deleted. The method stores a replacement style to be used by the configuration dependency system when a image style is deleted. The replacement style is replacing the deleted style in other configuration entities that are depending on the image style being deleted. Parameters string $name: The ID of the image style to be deleted. string $replacement: The ID of the image style used a

JsCollectionRenderer::__construct

public JsCollectionRenderer::__construct(StateInterface $state) Constructs a JsCollectionRenderer. Parameters \Drupal\Core\State\StateInterface $state: The state key/value store. File core/lib/Drupal/Core/Asset/JsCollectionRenderer.php, line 26 Class JsCollectionRenderer Renders JavaScript assets. Namespace Drupal\Core\Asset Code public function __construct(StateInterface $state) { $this->state = $state; }

install_tasks_to_display

install_tasks_to_display($install_state) Returns a list of tasks that should be displayed to the end user. The output of this function is a list suitable for sending to maintenance-task-list.html.twig. Parameters $install_state: An array of information about the current installation state. Return value A list of tasks, with keys equal to the machine-readable task name and values equal to the name that should be displayed. See also maintenance-task-list.html.twig File core/includes/install.co