Add feature to disable modules without having to remove them

This commit is contained in:
Marc Alexander
2011-03-11 14:00:32 +01:00
parent 45372fe769
commit 9db0baf400
13 changed files with 71 additions and 8 deletions

View File

@@ -19,6 +19,9 @@ define('B3_LINKS_CAT', 0);
define('B3_LINKS_INT', 1);
define('B3_LINKS_EXT', 2);
define('B3_MODULE_DISABLED', 0);
define('B3_MODULE_ENABLED', 1);
// Tables and paths
define('PORTAL_ROOT_PATH', 'portal/');
define('PORTAL_MODULES_TABLE', $table_prefix . 'portal_modules');