The application backend is accessible via /backend or by clicking on the gear icon, after you are logged in.
Only users with permission backend_default can access the backend dashboard.
‼️ By default all controllers of the application are only accessible to theadminuser.
You can make a page or controller publicly available, when you add the corresponding permission to the Public role.
It is recommended to setup an user with role Editor for managing the contents in the backend.
User authentication and authorization is provides by the extension dektrium/yii2-user, you can find its
documentation on GitHub.
You can switch the application language by choosing another language under the flag icon on the top right menu bar.
The settings module provides an easy to use key/value-storage.
The pages module is a manager for sitemap trees.
- login and go to
pagesin the left sidebar in application backend - create a root node, if there is none already
- select root-node and add a new page by clicking on the ➕
- add a unique
Name IDand set theMenu namewhich will be displayed in the navigation - select a route to define which action should be executed, eg.
site/index - save new page
- visit page in application frontend
- login and go to
settingsin the left sidebar in application backend - create or edit
pages, keyavailableRoutes - add one route per line, eg.
/docs, which should render the default action of the default controller of the module registered asdocs. - save