FieldStorageConfig

Defines the Field storage configuration entity. Plugin annotation @ConfigEntityType( id = "field_storage_config", label = @Translation("Field storage"), handlers = { "storage" = "Drupal\field\FieldStorageConfigStorage" }, config_prefix = "storage", entity_keys = { "id" = "id", "label" = "id" }, config_export = { "id", "field_name", "entity_type", "type", "settings", "module", "locked", "cardinality", "translatable", "indexes",

tablesort-indicator.html.twig

Default theme implementation for displaying a tablesort indicator. Available variables: style: Either 'asc' or 'desc', indicating the sorting direction. File core/modules/system/templates/tablesort-indicator.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.

DefaultExceptionSubscriber::$errorLevel

One of the error level constants defined in bootstrap.inc. Type: string File core/lib/Drupal/Core/EventSubscriber/DefaultExceptionSubscriber.php, line 31 Class DefaultExceptionSubscriber Last-chance handler for exceptions. Namespace Drupal\Core\EventSubscriber Code protected $errorLevel;

shortcut_default_set

shortcut_default_set($account = NULL) Returns the default shortcut set for a given user account. Parameters object $account: (optional) The user account whose default shortcut set will be returned. If not provided, the function will return the currently logged-in user's default shortcut set. Return value An object representing the default shortcut set. File core/modules/shortcut/shortcut.module, line 202 Allows users to manage customizable lists of shortcut links. Code function shortcut_def

AuthenticationManager::applyFilter

protected AuthenticationManager::applyFilter(Request $request, $authenticated, $provider_id) Checks whether a provider is allowed on the given request. If no filter is registered for the given provider id, the default filter is applied. Parameters \Symfony\Component\HttpFoundation\Request $request: The incoming request. bool $authenticated: Whether or not the request is authenticated. string $provider_id: The id of the authentication provider to check access for. Return value bool TRUE if pro

Update::__construct

public Update::__construct(Connection $connection, $table, array $options = array()) Constructs an Update query object. Parameters \Drupal\Core\Database\Connection $connection: A Connection object. string $table: Name of the table to associate with this query. array $options: Array of database options. Overrides Query::__construct File core/lib/Drupal/Core/Database/Query/Update.php, line 63 Class Update General class for an abstracted UPDATE operation. Namespace Drupal\Core\Database\Qu

ImageToolkitManager

Manages image toolkit plugins. Hierarchy class \Drupal\Component\Plugin\PluginManagerBase implements PluginManagerInterface uses DiscoveryTraitclass \Drupal\Core\Plugin\DefaultPluginManager implements CachedDiscoveryInterface, PluginManagerInterface, CacheableDependencyInterface uses DiscoveryCachedTrait, UseCacheBackendTraitclass \Drupal\Core\ImageToolkit\ImageToolkitManager See also \Drupal\Core\ImageToolkit\Annotation\ImageToolkit \Drupal\Core\ImageToolkit\ImageToolkitInterface \Drupal

aggregator_help

aggregator_help($route_name, RouteMatchInterface $route_match) Implements hook_help(). File core/modules/aggregator/aggregator.module, line 19 Used to aggregate syndicated content (RSS, RDF, and Atom). Code function aggregator_help($route_name, RouteMatchInterface $route_match) { switch ($route_name) { case 'help.page.aggregator': $path_validator = \Drupal::pathValidator(); $output = ''; $output .= '<h3>' . t('About') . '</h3>'; $output .= '<p>'

StringTranslationTrait::t

protected StringTranslationTrait::t($string, array $args = array(), array $options = array()) Translates a string to the current language or to a given language. See \Drupal\Core\StringTranslation\TranslatableMarkup::__construct() for important security information and usage guidelines. In order for strings to be localized, make them available in one of the ways supported by the Localization API. When possible, use the \Drupal\Core\StringTranslation\StringTranslationTrait $this->t(). Otherwi

FilterFormat::filters

public FilterFormat::filters($instance_id = NULL) Returns the ordered collection of filter plugin instances or an individual plugin instance. Parameters string $instance_id: (optional) The ID of a filter plugin instance to return. Return value \Drupal\filter\FilterPluginCollection|\Drupal\filter\Plugin\FilterInterface Either the filter collection or a specific filter plugin instance. Overrides FilterFormatInterface::filters File core/modules/filter/src/Entity/FilterFormat.php, line 134 Cla