ViewUI::getThirdPartySetting

public ViewUI::getThirdPartySetting($module, $key, $default = NULL) Gets the value of a third-party setting. Parameters string $module: The module providing the third-party setting. string $key: The setting name. mixed $default: The default value Return value mixed The value. Overrides ThirdPartySettingsInterface::getThirdPartySetting File core/modules/views_ui/src/ViewUI.php, line 1276 Class ViewUI Stores UI related temporary settings. Namespace Drupal\views_ui Code public function

LinkManager::getRelationInternalIds

public LinkManager::getRelationInternalIds($relation_uri) Translates a REST URI into internal IDs. Parameters string $relation_uri: Relation URI to transform into internal IDs Return value array Array with keys 'entity_type', 'bundle' and 'field_name'. Overrides RelationLinkManagerInterface::getRelationInternalIds File core/modules/rest/src/LinkManager/LinkManager.php, line 58 Class LinkManager Namespace Drupal\rest\LinkManager Code public function getRelationInternalIds($relation_u

PrimitiveInterface::getValue

public PrimitiveInterface::getValue() Gets the primitive data value. Return value mixed File core/lib/Drupal/Core/TypedData/PrimitiveInterface.php, line 17 Class PrimitiveInterface Interface for primitive data. Namespace Drupal\Core\TypedData Code public function getValue();

Connection::sqlFunctionConcat

public static Connection::sqlFunctionConcat() SQLite compatibility implementation for the CONCAT() SQL function. File core/lib/Drupal/Core/Database/Driver/sqlite/Connection.php, line 216 Class Connection SQLite implementation of \Drupal\Core\Database\Connection. Namespace Drupal\Core\Database\Driver\sqlite Code public static function sqlFunctionConcat() { $args = func_get_args(); return implode('', $args); }

EntityType::getHandlerClass

public EntityType::getHandlerClass($handler_type, $nested = FALSE) Parameters string $handler_type: The handler type to get. Return value array|string|null The handlers for a given type, or NULL if none exist. Overrides EntityTypeInterface::getHandlerClass File core/lib/Drupal/Core/Entity/EntityType.php, line 442 Class EntityType Provides an implementation of an entity type and its metadata. Namespace Drupal\Core\Entity Code public function getHandlerClass($handler_type, $nested = FA

TwigExtension::attachLibrary

public TwigExtension::attachLibrary($library) Attaches an asset library to the template, and hence to the response. Allows Twig templates to attach asset libraries using {{ attach_library('extension/library_name') }} Parameters string $library: An asset library. File core/lib/Drupal/Core/Template/TwigExtension.php, line 360 Class TwigExtension A class providing Drupal Twig extensions. Namespace Drupal\Core\Template Code public function attachLibrary($library) { // Use Renderer::ren

NoSessionOpen::check

public NoSessionOpen::check(Request $request) Determines whether delivery of a cached page should be attempted. Note that the request-policy check runs very early. In particular it is not possible to determine the logged in user. Also the current route match is not yet present when the check runs. Therefore, request-policy checks need to be designed in a way such that they do not depend on any other service and only take in account the information present on the incoming request. When matching

FieldItemInterface::__get

public FieldItemInterface::__get($property_name) Magic method: Gets a property value. Parameters $property_name: The name of the property to get; e.g., 'title' or 'name'. Return value \Drupal\Core\TypedData\TypedDataInterface The property object. Throws \InvalidArgumentException If a not existing property is accessed. File core/lib/Drupal/Core/Field/FieldItemInterface.php, line 126 Class FieldItemInterface Interface for entity field items. Namespace Drupal\Core\Field Code public fun

ConditionInterface::isNegated

public ConditionInterface::isNegated() Determines whether condition result will be negated. Return value bool Whether the condition result will be negated. File core/lib/Drupal/Core/Condition/ConditionInterface.php, line 53 Class ConditionInterface An interface for condition plugins. Namespace Drupal\Core\Condition Code public function isNegated();

views-view-row-rss.html.twig

Default theme implementation to display an item in a views RSS feed. Available variables: title: RSS item title. link: RSS item link. description: RSS body text. item_elements: RSS item elements to be rendered as XML (pubDate, creator, guid). See also template_preprocess_views_view_row_rss() File core/modules/views/templates/views-view-row-rss.html.twig Related topics Theme system overview Functions and templates for the user interface that themes can override.