forked from mkay/Exim4UI_mk1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappContext.php
More file actions
27 lines (20 loc) · 831 Bytes
/
appContext.php
File metadata and controls
27 lines (20 loc) · 831 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
$firephpEnabled = false;
include_once dirname(__FILE__) . '/logger.php';
// config file
include_once dirname(__FILE__) . '/config/variables.php';
// check authentication
include_once dirname(__FILE__) . '/config/authpostmaster.php';
// various general functions
include_once dirname(__FILE__) . '/config/functions.php';
// user service
include_once dirname(__FILE__) . '/config/service_user.php';
// not used yet
//$userService = new UserService4uMock();
// group service
include_once dirname(__FILE__) . '/config/service_group.php';
include_once dirname(__FILE__) . '/config/service_group_sql.php';
//$groupService = new GroupService4uMock();
$groupService = new GroupService4uSql($db);
// current domain
$domainId = $_SESSION['domain_id'];