1
0
mirror of https://github.com/Mowie/Mowie synced 2024-06-03 01:19:39 +00:00
Mowie/inc/autoload_adm.php

19 lines
343 B
PHP
Raw Permalink Normal View History

2016-08-02 21:13:25 +00:00
<?php
session_name('adminsession');
session_start();
2017-10-04 18:46:49 +00:00
// Require Composer Libs
require_once '../vendor/autoload.php';
// Require Config
2016-08-02 21:13:25 +00:00
require_once '../inc/config.php';
//Language
2016-08-07 09:37:19 +00:00
//$lang = new lang();
2016-08-02 21:13:25 +00:00
$lang->setLangFolder('lang/');
//init Apps
require_once '../inc/apps.php';
$apps = new apps();
2016-08-02 21:13:25 +00:00
require_once '../inc/libs/functions.php';