Skip to content

Instantly share code, notes, and snippets.

@marcus-at-localhost
Last active February 3, 2023 11:08
Show Gist options
  • Save marcus-at-localhost/ab755ab32124c76aad056bad8de277c9 to your computer and use it in GitHub Desktop.
Save marcus-at-localhost/ab755ab32124c76aad056bad8de277c9 to your computer and use it in GitHub Desktop.
Retrieve Plugin Data.md

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');
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment