Hi community,
I am working on a block plugin and would like to handle the logic in a controller instead inside the snippet. My plugin structure looks like this:
myplugin
– blueprints
---- blocks
------ myplugin.yml
– controllers
---- blocks
------ myplugin.php
– snippets
---- blocks
------ myplugin.php
– composer.json
– index.js
– index.php
index.php:
<?php
Kirby::plugin('me/myplugin', [
'blueprints' => [
'blocks/myplugin' => __DIR__ . '/blueprints/blocks/myplugin.yml',
],
'snippets' => [
'blocks/myplugin' => __DIR__ . '/snippets/blocks/myplugin.php',
],
'controllers' => [
'blocks/myplugin' => require __DIR__ . '/controllers/blocks/myplugin.php',
]
]);
controllers/blocks/myplugin.php:
<?php
return function ($site) {
return [
'myVar' => $site->title();
];
};
snippets/blocks/myplugin.php:
<h1><?= $myVar ?></h1>
The usage of $myVar in snippets/blocks/myplugin.php throws an error saying: “Undefined variable for myVar”.
Any idea on how to use the controller properly?