ShortcutSetDeleteForm::$database

The database connection. Type: \Drupal\Core\Database\Connection File core/modules/shortcut/src/Form/ShortcutSetDeleteForm.php, line 21 Class ShortcutSetDeleteForm Builds the shortcut set deletion form. Namespace Drupal\shortcut\Form Code protected $database;

Attribute

Collects, sanitizes, and renders HTML attributes. To use, optionally pass in an associative array of defined attributes, or add attributes using array syntax. For example: $attributes = new Attribute(array('id' => 'socks')); $attributes['class'] = array('black-cat', 'white-cat'); $attributes['class'][] = 'black-white-cat'; echo '<cat' . $attributes . '>'; // Produces <cat id="socks" class="black-cat white-cat black-white-cat"> $attributes always prints out all the attribut

EntityDisplayBase::$originalMode

The original view or form mode that was requested (case of view/form modes being configured to fall back to the 'default' display). Type: string File core/lib/Drupal/Core/Entity/EntityDisplayBase.php, line 87 Class EntityDisplayBase Provides a common base class for entity view and form displays. Namespace Drupal\Core\Entity Code protected $originalMode;

ShortcutSetDeleteForm::create

public static ShortcutSetDeleteForm::create(ContainerInterface $container) Instantiates a new instance of this class. This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton. Parameters \Symfony\Component\DependencyInjection\ContainerInterface $container: The se

ConfigEntityBase::setSyncing

public ConfigEntityBase::setSyncing($syncing) Sets the status of the isSyncing flag. Parameters bool $status: The status of the sync flag. Return value $this Overrides ConfigEntityInterface::setSyncing File core/lib/Drupal/Core/Config/Entity/ConfigEntityBase.php, line 210 Class ConfigEntityBase Defines a base configuration entity class. Namespace Drupal\Core\Config\Entity Code public function setSyncing($syncing) { $this->isSyncing = $syncing; return $this; }

template_preprocess_filter_guidelines

template_preprocess_filter_guidelines(&$variables) Prepares variables for text format guideline templates. Default template: filter-guidelines.html.twig. Parameters array $variables: An associative array containing: format: An object representing a text format. File core/modules/filter/filter.module, line 373 Framework for handling the filtering of content. Code function template_preprocess_filter_guidelines(&$variables) { $format = $variables['format']; $variables['tips'] = a

MenuLinkManager::deleteInstance

protected MenuLinkManager::deleteInstance(MenuLinkInterface $instance, $persist) Deletes a specific instance. Parameters \Drupal\Core\Menu\MenuLinkInterface $instance: The plugin instance to be deleted. bool $persist: If TRUE, calls MenuLinkInterface::deleteLink() on the instance. Throws \Drupal\Component\Plugin\Exception\PluginException If the plugin instance does not support deletion. File core/lib/Drupal/Core/Menu/MenuLinkManager.php, line 274 Class MenuLinkManager Manages discovery,

RouteMatch

Default object representing the results of routing. Hierarchy class \Drupal\Core\Routing\RouteMatch implements RouteMatchInterface File core/lib/Drupal/Core/Routing/RouteMatch.php, line 13 Namespace Drupal\Core\Routing Members Name Modifiers Type Description RouteMatch::$parameters protected property A key|value store of parameters. RouteMatch::$rawParameters protected property A key|value store of raw parameters. RouteMatch::$route protected property The

search_theme_suggestions_search_result

search_theme_suggestions_search_result(array $variables) Implements hook_theme_suggestions_HOOK(). File core/modules/search/search.pages.inc, line 14 User page callbacks for the Search module. Code function search_theme_suggestions_search_result(array $variables) { return array('search_result__' . $variables['plugin_id']); }

SqlContentEntityStorageSchema::finalizePurge

public SqlContentEntityStorageSchema::finalizePurge(FieldStorageDefinitionInterface $storage_definition) Performs final cleanup after all data of a field has been purged. Parameters \Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The field being purged. Overrides DynamicallyFieldableEntityStorageSchemaInterface::finalizePurge File core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorageSchema.php, line 448 Class SqlContentEntityStorageSchema Defines a schema handler