EntityEmbedTestTwigController.php in Entity Embed 8
File
tests/modules/entity_embed_test/src/EntityEmbedTestTwigController.php
View source
<?php
namespace Drupal\entity_embed_test;
class EntityEmbedTestTwigController {
public function idRender() {
return [
'#theme' => 'entity_embed_twig_test',
'#entity_type' => 'node',
'#id' => '1',
];
}
public function labelPluginRender() {
return [
'#theme' => 'entity_embed_twig_test',
'#entity_type' => 'node',
'#id' => '1',
'#display_plugin' => 'entity_reference:entity_reference_label',
];
}
public function labelPluginNoLinkRender() {
return [
'#theme' => 'entity_embed_twig_test',
'#entity_type' => 'node',
'#id' => '1',
'#display_plugin' => 'entity_reference:entity_reference_label',
'#display_settings' => [
'link' => 0,
],
];
}
}