-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathmodules.php
35 lines (31 loc) · 1.11 KB
/
modules.php
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
27
28
29
30
31
32
33
34
35
<?php
/**
* This file is a part of MyWebSQL package
* defines the list of modules to be allowed/disallowed from access
*
* @file: config/modules.php
* @author Samnan ur Rehman
* @copyright (c) 2008-2014 Samnan ur Rehman
* @web http://mywebsql.net
* @license http://mywebsql.net/license
*
* Notes:
* First, set the type of MODULE_ACCESS_MODE to 'allow' or 'deny'
* then define the include array, or exclude array based on above preference
*/
// Module access mode, can be either 'allow' or 'deny'
// allow = Only the modules defined in allowed list will be accessible
// deny = all modules, except those defined in deny list will be accessible
define('MODULE_ACCESS_MODE', 'deny');
// list of modules that should be allowed access. All other modules will be
// denied access by default
$ALLOW_MODULES = array(
);
// list of modules that should be denied access. All other modules will be
// accessible by default
$DENY_MODULES = array(
// example: to deny access to the 'Database Manager' tool, which is potentially dangerous,
// uncomment the following line
//'databases'
);
?>