Config

System configuration files

The system configuration files (config db & config sys) are generated automatically during the installation process. They can be changed manually, especially for caching options.

Languages configuration file

In case of adding a new language, remove slash from concerned language in the languages configuration file (config lang) like this:

#Example
$languages = array(
[...]
    'fr-FR' => 'Français (Fr)',
[...]
);

Actions configuration files (view & no view)

In case of adding a new action (view or no view), add a line in the actions configuration files ("config view" or "config no view") like this:

$view_files = array(
    [...]
    'action_name.view' => 'sub_tpl_access_category',
    [...]
);

$no_view_files = array(
    [...]
    'action_name.nview' => 'sub_tpl_access_category',
    [...]
);