You are here

public function BackgroundImageTextBlock::build in Background Image 2.0.x

Same name and namespace in other branches
  1. 8 src/Plugin/Block/BackgroundImageTextBlock.php \Drupal\background_image\Plugin\Block\BackgroundImageTextBlock::build()
  2. 2.x src/Plugin/Block/BackgroundImageTextBlock.php \Drupal\background_image\Plugin\Block\BackgroundImageTextBlock::build()

Builds and returns the renderable array for this block plugin.

If a block should not be rendered because it has no content, then this method must also ensure to return no content: it must then only return an empty array, or an empty array with #cache set (with cacheability metadata indicating the circumstances for it being empty).

Return value

array A renderable array representing the content of the block.

Overrides BlockPluginInterface::build

See also

\Drupal\block\BlockViewBuilder

File

src/Plugin/Block/BackgroundImageTextBlock.php, line 30

Class

BackgroundImageTextBlock
Plugin annotation @Block( id = "background_image_text", admin_label = @Translation("Background Image - Text"), category = @Translation("Background Image") )

Namespace

Drupal\background_image\Plugin\Block

Code

public function build() {
  $build = [];
  $background_image_manager = BackgroundImageManager::service();
  if ($background_image = $background_image_manager
    ->getBackgroundImage()) {
    $build = $background_image_manager
      ->view($background_image, 'text');
  }
  $build['#cache']['contexts'][] = 'user.permissions';
  return $build;
}