You are here

protected function BackLinkBlock::isOverrideJS in Opigno Learning path 3.x

1 call to BackLinkBlock::isOverrideJS()
BackLinkBlock::build in src/Plugin/Block/BackLinkBlock.php
Builds and returns the renderable array for this block plugin.

File

src/Plugin/Block/BackLinkBlock.php, line 110

Class

BackLinkBlock
Provides a backlinkblock block.

Namespace

Drupal\opigno_learning_path\Plugin\Block

Code

protected function isOverrideJS() {
  if (is_null($this->isOverrideJS)) {
    $this
      ->setOverrideJS();
  }
  return $this->isOverrideJS;
}