Retrieve Plugin Data #kirby #php
Eg. get a blueprint or a template path in a controller:
// index.php
Kirby::plugin('my/plugin', [
'blueprints' => [
'profile_form' => __DIR__ . '/blueprints/form.yml',
],
'templates' => [
'loginform' => __DIR__ . '/templates/loginform.php',
'profile' => __DIR__ . '/templates/profile.blade.php',
],
]);
//controllers/login.php
return function ($page, $site, $kirby) {
$myForm = Data::read($kirby->extension('blueprints','profile_form'));
$form = new Form($myForm);
return compact('form');
};