Skip to content

Instantly share code, notes, and snippets.

@thomascys
Last active November 27, 2021 19:06
Show Gist options
  • Save thomascys/fd45d70353ad0e67967e2483891daa56 to your computer and use it in GitHub Desktop.
Save thomascys/fd45d70353ad0e67967e2483891daa56 to your computer and use it in GitHub Desktop.
<?php
namespace Drupal\custom_module\Plugin\Block;
use Drupal\Core\Block\BlockBase;
/**
* Provides a 'LazyBlock' block.
*
* @Block(
* id = "lazy_block",
* admin_label = @Translation("Lazy block"),
* )
*/
class LazyBlock extends BlockBase {
/**
* {@inheritdoc}
*/
public function build() {
$build = [];
$build['lazy_block']['#lazy_builder'] = [static::class . '::lazyMethod', ['argument1']];
$build['lazy_block']['#create_placeholder'] = TRUE;
return $build;
}
public static function lazyMethod($argument1) {
sleep(5);
return [
'output' => [
'#markup' => '<p>Well, this took a while.</p>'
]
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment