diff options
author | Guillaume Mazoyer <respawneral@gmail.com> | 2014-05-29 22:08:00 +0200 |
---|---|---|
committer | Guillaume Mazoyer <respawneral@gmail.com> | 2014-05-29 22:08:00 +0200 |
commit | 2c4d55aafd5210b72feadf51496596fc024920ed (patch) | |
tree | 369e93e432a1d550942deadbfb5a80e7a5b5b493 /config.php.example | |
parent | 75d04f9a5fb6152e84d5ad60227156cfea5923bd (diff) |
Rewrite index.php in object style.
Add a way to define an order in the frontpage between routers/commands/parameters/buttons.
Diffstat (limited to 'config.php.example')
-rw-r--r-- | config.php.example | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.php.example b/config.php.example index 7355e92..be03e54 100644 --- a/config.php.example +++ b/config.php.example @@ -14,6 +14,8 @@ $config['frontpage']['title'] = 'Looking Glass'; $config['frontpage']['image'] = 'logo.png'; // Disclaimer to inform people using the looking glass $config['frontpage']['disclaimer'] = 'This is a disclaimer!'; +// Frontpage order you can use: routers, commands, parameters, buttons +$config['frontpage']['order'] = array('routers', 'commands', 'parameters', 'buttons'); // Logs file when commands will be written $config['misc']['logs'] = '/var/log/looking-glass.log'; |