FAQ: Navigation

How can I remove Mait templates from the settings menu?

Modules can implement SettingEntities. If they do so, they will be automatically inserted into the navigation. If you want to disable this feature, you can unset Modules Settings in your configuration. Place the following configuration into your autoload/my-navigation.local.php

<?php
return [
    'Applications' => [
        'settings' => null,
    ],
    'Core' => [
        'settings' => null,
    ]
];

How can I hide the navigation on the application form?

In the YawikDemoSkin Module, you can see how this can be done.

https://github.com/cbleek/YawikDemoSkin/blob/master/Module.php#L65