1
0
mirror of https://github.com/Mowie/Mowie synced 2024-06-18 16:34:08 +00:00
Mowie/apps/Navigation/config.php
kolaente b365dc88ed Nav-App fixes and improvements
* Inserted Logging
* Added Installer
* Enabled external links as nav entries
* Fix: Pages can't be their own parent
* Fix: Top table row can't be moved
2017-05-01 17:18:39 +02:00

17 lines
516 B
PHP
Executable File

<?php
//langstrings
$GLOBALS['lang']->set('Navigation', 'nav_title', 'de');
$GLOBALS['lang']->set('Navigation', 'nav_title', 'en');
$_CONF['app_name'] = 'Navigation';
$_CONF['app_build'] = 2;
$_CONF['app_version'] = 'v0.91 Beta';
$_CONF['base_file'] = 'nav.php';
$_CONF['type'] = 'static';
$_CONF['menu_top'] = '<i class="fa fa-bars"></i> ' . $GLOBALS['lang']->get('nav_title');
$_CONF['menu'] = ['menu_top' => 'index.php'];
$_CONF['css'] = ['css/nav.css'];
$_CONF['dependencies'] = ['apps' => ['SimplePages']];