LoggerChannel::$loggers

An array of arrays of \Psr\Log\LoggerInterface keyed by priority. Type: array File core/lib/Drupal/Core/Logger/LoggerChannel.php, line 65 Class LoggerChannel Defines a logger channel that most implementations will use. Namespace Drupal\Core\Logger Code protected $loggers = array();

LanguageListBuilder::buildRow

public LanguageListBuilder::buildRow(EntityInterface $entity) Builds a row for an entity in the entity listing. Parameters \Drupal\Core\Entity\EntityInterface $entity: The entity for this row of the list. Return value array A render array structure of fields for this entity. Overrides DraggableListBuilder::buildRow See also \Drupal\Core\Entity\EntityListBuilder::render() File core/modules/language/src/LanguageListBuilder.php, line 103 Class LanguageListBuilder Defines a class to build a

PathProcessorLanguage::reset

public PathProcessorLanguage::reset() Resets the collected processors instances. File core/modules/language/src/HttpKernel/PathProcessorLanguage.php, line 176 Class PathProcessorLanguage Processes the inbound path using path alias lookups. Namespace Drupal\language\HttpKernel Code public function reset() { $this->processors = array(); }

system_theme_suggestions_region

system_theme_suggestions_region(array $variables) Implements hook_theme_suggestions_HOOK(). File core/modules/system/system.module, line 302 Configuration system that lets administrators modify the workings of the site. Code function system_theme_suggestions_region(array $variables) { $suggestions = array(); if (!empty($variables['elements']['#region'])) { $suggestions[] = 'region__' . $variables['elements']['#region']; } return $suggestions; }

MenuLinkContent::preDelete

public static MenuLinkContent::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 Entity::preDelete File core/modules/menu_link_content/src/Entity/MenuLinkContent.php, line

FormatterInterface::view

public FormatterInterface::view(FieldItemListInterface $items, $langcode = NULL) Builds a renderable array for a fully themed field. Parameters \Drupal\Core\Field\FieldItemListInterface $items: The field values to be rendered. string $langcode: (optional) The language that should be used to render the field. Defaults to the current content language. Return value array A renderable array for a themed field with its label and all its values. File core/lib/Drupal/Core/Field/FormatterInterface.ph

PhpTransliteration::removeDiacritics

public PhpTransliteration::removeDiacritics($string) Removes diacritics (accents) from certain letters. This only applies to certain letters: Accented Latin characters like a-with-acute-accent, in the UTF-8 character range of 0xE0 to 0xE6 and 01CD to 024F. Replacements that would result in the string changing length are excluded, as well as characters that are not accented US-ASCII letters. Parameters string $string: The string holding diacritics. Return value string $string with accented let

FieldUninstallValidator::getFieldStoragesByModule

protected FieldUninstallValidator::getFieldStoragesByModule($module) Returns all field storages for a specified module. Parameters string $module: The module to filter field storages by. Return value \Drupal\field\FieldStorageConfigInterface[] An array of field storages for a specified module. File core/modules/field/src/FieldUninstallValidator.php, line 84 Class FieldUninstallValidator Prevents uninstallation of modules providing active field storage. Namespace Drupal\field Code pro

AuthenticationManager::defaultFilter

protected AuthenticationManager::defaultFilter(Request $request, $provider_id) Default implementation of the provider filter. Checks whether a provider is allowed as per the _auth option on a route. If the option is not set or if the request did not match any route, only providers from the global provider set are allowed. If no filter is registered for the given provider id, the default filter is applied. Parameters \Symfony\Component\HttpFoundation\Request $request: The incoming request. stri

FeedStorageInterface::getFeedIdsToRefresh

public FeedStorageInterface::getFeedIdsToRefresh() Returns the fids of feeds that need to be refreshed. Return value array A list of feed ids to be refreshed. File core/modules/aggregator/src/FeedStorageInterface.php, line 18 Class FeedStorageInterface Defines an interface for aggregator feed entity storage classes. Namespace Drupal\aggregator Code public function getFeedIdsToRefresh();