You are here

public function PlaceholderGenerator::canCreatePlaceholder in Zircon Profile 8

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

Analyzes whether the given render array can be placeholdered.

Parameters

array $element: A render array. Its #lazy_builder and #create_placeholder properties are analyzed.

Return value

bool

Overrides PlaceholderGeneratorInterface::canCreatePlaceholder

File

core/lib/Drupal/Core/Render/PlaceholderGenerator.php, line 39
Contains \Drupal\Core\Render\PlaceholderGenerator.

Class

PlaceholderGenerator
Turns a render array into a placeholder.

Namespace

Drupal\Core\Render

Code

public function canCreatePlaceholder(array $element) {
  return isset($element['#lazy_builder']) && (!isset($element['#create_placeholder']) || $element['#create_placeholder'] !== FALSE);
}