You are here

public static function BubbleableMetadata::createFromObject in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Render/BubbleableMetadata.php \Drupal\Core\Render\BubbleableMetadata::createFromObject()

Creates a bubbleable metadata object from a depended object.

Parameters

\Drupal\Core\Cache\CacheableDependencyInterface|mixed $object: The object whose cacheability metadata to retrieve. If it implements CacheableDependencyInterface, its cacheability metadata will be used, otherwise, the passed in object must be assumed to be uncacheable, so max-age 0 is set.

Return value

static

Overrides CacheableMetadata::createFromObject

8 calls to BubbleableMetadata::createFromObject()
CommentTokenReplaceTest::testCommentTokenReplacement in core/modules/comment/src/Tests/CommentTokenReplaceTest.php
Creates a comment, then tests the tokens generated from it.
FileTokenReplaceTest::testFileTokenReplacement in core/modules/file/src/Tests/FileTokenReplaceTest.php
Creates a file, then tests the tokens generated from it.
NodeTokenReplaceTest::testNodeTokenReplacement in core/modules/node/src/Tests/NodeTokenReplaceTest.php
Creates a node, then tests the tokens generated from it.
TokenReplaceTest::testTaxonomyTokenReplacement in core/modules/taxonomy/src/Tests/TokenReplaceTest.php
Creates some terms and a node, then tests the tokens generated from them.
TokenReplaceTest::testTokenReplacement in core/modules/views/src/Tests/TokenReplaceTest.php
Tests core token replacements generated from a view.

... See full list

File

core/lib/Drupal/Core/Render/BubbleableMetadata.php, line 87
Contains \Drupal\Core\Render\BubbleableMetadata.

Class

BubbleableMetadata
Value object used for bubbleable rendering metadata.

Namespace

Drupal\Core\Render

Code

public static function createFromObject($object) {
  $meta = parent::createFromObject($object);
  if ($object instanceof AttachmentsInterface) {
    $meta->attachments = $object
      ->getAttachments();
  }
  return $meta;
}