Is there a list of plugin hooks for the admin? I noticed that the simple search plugin used one to register its page type, but couldn’t find any documentation of them.
There’s only a few and they are not documented yet. Basically we have:
-
onGetPageTemplates(Event)-> for adding page templates (see simplesearch plugin) -
onBlueprintCreated(Event)-> for injecting into page blueprints (see feed plugin) -
onAdminTemplateNavPluginHook()-> for adding into the Admin sidebar (see data-manager plugin)
I think that’s it!