Skip to content
Grav 2.0 is officially stable. Read the announcement →

Community guidelines

Please keep discussions civil and on-topic. Repeated violations may lead to a temporary ban.

Forms & Blueprints

Custom page plugin

plugin plugins

Solved by Robbert Luit View solution

Started by Luigi 7 years ago · 3 replies · 962 views
7 years ago

Hi guys
I tried to create a custom page with a custom plugin

In docs there's an example, but the plugin don't found the template

In my plugin I added the template "example.html.twig" ander ther folder templates
Then, I subscribed the event "onGetPageTemplates" and I registered the template
Finally, I associated the new template at a page

But when I call ther route, Grav give me the error: Template "example.html.twig" is not defined.

There's someone that can help me please?
Thank in advance

7 years ago Solution

What you can do is..
Go to the absolute link of that page and see if it exists.
-> if it doesn't, check for typo's? If it does, check if it is in the right folder where your link goes to..

Good luck :-)

7 years ago

@luigimassa The docs you are referring to is only about defining and registering blueprints extending existing blueprints ('default') or creating custom blueprints ('example' in '/user/plugins/yourplugin/blueprints/example.yaml'). These blueprints are used by the Admin panel when creating pages.

This is only part of the story...

You also need to tell Grav on which path the custom template ('example.html.twig') can be found. This registration is done in PHP:

PHP
public function onTwigTemplatePaths()
{
    $this->grav['twig']->twig_paths[] = 'plugins://yourplugin/templates';
}

Hope this helps...

7 years ago

Thanks in advance.
It's exactly the solution.

I'm newbie and documentation it's not complete.

But with debug and forum I'm understanding the CMS

Thanks and regards

Suggested topics

Topic Participants Replies Views Activity
Forms & Blueprints · by Ton Haarmans, 5 years ago
13 1135 4 months ago
Forms & Blueprints · by Hugo Oliveira, 5 months ago
0 60 5 months ago
Forms & Blueprints · by Flachy Joe, 6 months ago
9 132 6 months ago
Forms & Blueprints · by Augustus, 7 months ago
7 108 7 months ago
Forms & Blueprints · by Julien, 7 months ago
10 127 7 months ago