Panel areas
Every part of the Panel is a separated area with routes, optional menu item, icon, breadcrumb label, access permissions, etc.
Your plugins can create additional areas for entire new Panel parts and mini applications.
Default areas
The following "areas" are installed by default:
account
installation
(only active if no user is defined)login
(only active if no user is logged in)logout
settings
site
users
Area definition
Plugins can create their own Panel areas. Areas can be just a single view or really complex applications with multiple routes.
Areas are defined in a callback function that receives the $kirby
instance and must return their configuration as an array
Translating labels, titles, etc.
You probably want to translate elements like labels, titles, breadcrumbs or other parts of the interface at some point. This can be done by using Kirby's t()
method:
Defining translations is the most solid way to do this, but sometimes you just need a quick way to offer two or three translations for your users in an internal plugin. You can also define translations as an array for such a case:
Extending areas
You've already seen above how custom areas are created. This is cool if you want to extend the Panel with your own little "apps". Think of newsletter management, a custom CRM system, an integration with your client's ERM system or anything else that needs to be fully custom fitted.
But you can also overwrite and extend our core areas. This can start simple with a custom pages search, a custom file dropdown with additional options or an extended core dialog. But you can even replace entire core views if they don't fit your project.
We will focus on views on this page. For guides on how to extend dialogs, dropdowns or searches, please check out the dedicated pages on those parts.
Example: how to replace the users view
In this example, we will create an entirely new users view. The users view is part of the users area.
It's important to only replace the part of the area definition that should be changed. The rest will still be loaded from the core.
There are two ways to move forward now:
1.) only replace the props
You might be happy with the way the view looks, but you want to customize the data that's being shown in the view. In this case, you don't need to replace everything. You can only send modified props to the view.
In the example above, we are showing the anatomy of what's being sent to the k-users-view
component. The component will then take that data and display it as usual. As you can see, it's super easy to manipulate the result array and send your custom user data, custom role filters or whatever you want to do.
You can find more information about these components and their props in the UI Kit docs.
2.) replace everything
As an alternative, you might want to replace everything with a custom users view component.
This is a very simplified example to show the basic concept. In your plugin, you would create an index.js and an index.php.
In the index.js you can overwrite the Vue component that renders the users view:
The overwritten k-users-view
component can now define its own props, which will be loaded from the backend and can also define an entirely new HTML template to render those props.
The k-users-view
component uses the k-inside
component as a basic wrapper. This will render the topbar, menu, etc. By not using this wrapper, you can create a fullscreen view that does not render any of the Panel UI elements.
In this example, the list of users is just a basic unordered list, but of course this could be anything. A big table, custom cards, or whatever you need to show your users appropriately.
The backend part of your overwritten view is now sending exactly what your component needs. If you find out that you want to send your users in alphabetical groups or every user object should also contain the Instagram follower count, go for it.
Core views
Area | View name |
---|---|
account |
account |
account |
password |
installation |
installation |
installation |
installation.fallback |
languages |
languages |
login |
login |
login |
login.fallback |
logout |
logout |
site |
site |
site |
site.file |
site |
page |
site |
page.file |
system |
system |
users |
user |
users |
user.file |
users |
users |