1
0
mirror of https://github.com/Mowie/Mowie synced 2024-06-02 08:59:38 +00:00
Mowie/inc/autoload_adm.php
kolaente b6a4ecbe1e Added own class to loop through apps
Added App-Support for aliases, domains and own CSS (Documentation coming soon)
2016-09-28 17:49:00 +02:00

14 lines
259 B
PHP
Executable File

<?php
session_name('adminsession');
session_start();
require_once '../inc/config.php';
//Language
//$lang = new lang();
$lang->setLangFolder('lang/');
//init Apps
require_once '../inc/apps.php';
$apps = new apps();
require_once '../inc/libs/functions.php';