Last active
November 27, 2021 19:06
-
-
Save thomascys/fd45d70353ad0e67967e2483891daa56 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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