BlockWithPreview.php in Panopoly Magic 8.2
File
tests/modules/panopoly_magic_preview_test/src/Plugin/Block/BlockWithPreview.php
View source
<?php
namespace Drupal\panopoly_magic_preview_test\Plugin\Block;
use Drupal\Core\Block\BlockBase;
use Drupal\panopoly_magic\BlockPreviewInterface;
class BlockWithPreview extends BlockBase implements BlockPreviewInterface {
public function build() {
return [
'#markup' => $this
->t("BlockWithPreview: normal block content"),
];
}
public function buildPreview() {
return [
'#markup' => $this
->t("BlockWithPreview: preview block content"),
];
}
}