You are here

protected function WebformBlock::getWebform in Webform 8.5

Same name and namespace in other branches
  1. 6.x src/Plugin/Block/WebformBlock.php \Drupal\webform\Plugin\Block\WebformBlock::getWebform()

Get this block instance webform.

Return value

\Drupal\webform\WebformInterface A webform or NULL.

4 calls to WebformBlock::getWebform()
WebformBlock::blockAccess in src/Plugin/Block/WebformBlock.php
Indicates whether the block should be shown.
WebformBlock::blockForm in src/Plugin/Block/WebformBlock.php
WebformBlock::build in src/Plugin/Block/WebformBlock.php
Builds and returns the renderable array for this block plugin.
WebformBlock::calculateDependencies in src/Plugin/Block/WebformBlock.php

File

src/Plugin/Block/WebformBlock.php, line 271

Class

WebformBlock
Provides a 'Webform' block.

Namespace

Drupal\webform\Plugin\Block

Code

protected function getWebform() {
  return $this->entityTypeManager
    ->getStorage('webform')
    ->load($this->configuration['webform_id']);
}