image-scale-summary.html.twig

Default theme implementation for a summary of an image scale effect. Available variables: data: The current configuration for this resize effect, including: width: The width of the resized image. height: The height of the resized image. upscale: If images larger than their original size can scale. effect: The effect information, including: id: The effect identifier. label: The effect name. description: The effect description. File core/modules/image/templates/image-scale-summary.ht

CommentInterface::getSubject

public CommentInterface::getSubject() Returns the subject of the comment. Return value string The subject of the comment. File core/modules/comment/src/CommentInterface.php, line 89 Class CommentInterface Provides an interface defining a comment entity. Namespace Drupal\comment Code public function getSubject();

DrupalKernel::getKernelParameters

protected DrupalKernel::getKernelParameters() Returns the kernel parameters. Return value array An array of kernel parameters File core/lib/Drupal/Core/DrupalKernel.php, line 819 Class DrupalKernel The DrupalKernel class is the core of Drupal itself. Namespace Drupal\Core Code protected function getKernelParameters() { return array( 'kernel.environment' => $this->environment, ); }

LanguageManager::getDefaultLanguage

public LanguageManager::getDefaultLanguage() Returns a language object representing the site's default language. Return value \Drupal\Core\Language\LanguageInterface A language object. Overrides LanguageManagerInterface::getDefaultLanguage File core/lib/Drupal/Core/Language/LanguageManager.php, line 116 Class LanguageManager Class responsible for providing language support on language-unaware sites. Namespace Drupal\Core\Language Code public function getDefaultLanguage() { return $t

EntityAutocomplete::extractEntityIdFromAutocompleteInput

public static EntityAutocomplete::extractEntityIdFromAutocompleteInput($input) Extracts the entity ID from the autocompletion result. Parameters string $input: The input coming from the autocompletion result. Return value mixed|null An entity ID or NULL if the input does not contain one. File core/lib/Drupal/Core/Entity/Element/EntityAutocomplete.php, line 348 Class EntityAutocomplete Provides an entity autocomplete form element. Namespace Drupal\Core\Entity\Element Code public stati

WidgetBase::handlesMultipleValues

protected WidgetBase::handlesMultipleValues() Returns whether the widget handles multiple values. Return value bool TRUE if a single copy of formElement() can handle multiple field values, FALSE if multiple values require separate copies of formElement(). File core/lib/Drupal/Core/Field/WidgetBase.php, line 539 Class WidgetBase Base class for 'Field widget' plugin implementations. Namespace Drupal\Core\Field Code protected function handlesMultipleValues() { $definition = $this->g

user_views_query_substitutions

user_views_query_substitutions(ViewExecutable $view) Implements hook_views_query_substitutions(). Allow replacement of current userid so we can cache these queries. File core/modules/user/user.views_execution.inc, line 15 Provide views runtime hooks for user.module. Code function user_views_query_substitutions(ViewExecutable $view) { return array('***CURRENT_USER***' => \Drupal::currentUser()->id()); }

EntityStorageBase::$uuidKey

Name of entity's UUID database table field, if it supports UUIDs. Has the value FALSE if this entity does not use UUIDs. Type: string File core/lib/Drupal/Core/Entity/EntityStorageBase.php, line 52 Class EntityStorageBase A base entity storage class. Namespace Drupal\Core\Entity Code protected $uuidKey;

NullStorageExpirable::getCollectionName

public NullStorageExpirable::getCollectionName() Returns the name of this collection. Return value string The name of this collection. Overrides KeyValueStoreInterface::getCollectionName File core/lib/Drupal/Core/KeyValueStore/NullStorageExpirable.php, line 98 Class NullStorageExpirable Defines a null key/value store implementation. Namespace Drupal\Core\KeyValueStore Code public function getCollectionName() { return $this->collection; }

RevisionLogInterface::getRevisionUserId

public RevisionLogInterface::getRevisionUserId() Gets the entity revision author ID. Return value int The user ID. File core/lib/Drupal/Core/Entity/RevisionLogInterface.php, line 54 Class RevisionLogInterface Defines methods for an entity that supports revision logging and ownership. Namespace Drupal\Core\Entity Code public function getRevisionUserId();