diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-25 19:14:55 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-25 19:14:55 +0000 |
commit | 1a8c91b0d40bc0331722906607ddf99c2be7c8d9 (patch) | |
tree | f621d41a147c07afa7e7f357be5fb3e8bb38b576 /phpBB/includes/acp/acp_users.php | |
parent | 64fbadf3d6e05c00b7b72ed0f40d9c16f0806f3b (diff) | |
download | forums-1a8c91b0d40bc0331722906607ddf99c2be7c8d9.tar forums-1a8c91b0d40bc0331722906607ddf99c2be7c8d9.tar.gz forums-1a8c91b0d40bc0331722906607ddf99c2be7c8d9.tar.bz2 forums-1a8c91b0d40bc0331722906607ddf99c2be7c8d9.tar.xz forums-1a8c91b0d40bc0331722906607ddf99c2be7c8d9.zip |
ok, thought about this now for too long. I think the best solution circumventing memory consumption and not introducing "hacks" is to seperate module information (and probably more in 3.2 for installation/uninstallation) from the main code.
git-svn-id: file:///svn/phpbb/trunk@5725 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_users.php')
-rw-r--r-- | phpBB/includes/acp/acp_users.php | 40 |
1 files changed, 3 insertions, 37 deletions
diff --git a/phpBB/includes/acp/acp_users.php b/phpBB/includes/acp/acp_users.php index 1dfbb4f516..9523c0952c 100644 --- a/phpBB/includes/acp/acp_users.php +++ b/phpBB/includes/acp/acp_users.php @@ -108,8 +108,9 @@ class acp_users // Generate overall "header" for user admin $s_form_options = ''; - $module_info = new acp_users_info(); - $forms_ary = $module_info->module(); + // Include info file... + include_once($phpbb_root_path . 'includes/acp/info/acp_users.' . $phpEx); + $forms_ary = acp_users_info::module(); foreach ($forms_ary['modes'] as $value => $ary) { @@ -1882,39 +1883,4 @@ class acp_users } } -/** -* @package module_install -*/ -class acp_users_info -{ - function module() - { - return array( - 'filename' => 'acp_users', - 'title' => 'ACP_USER_MANAGEMENT', - 'version' => '1.0.0', - 'modes' => array( - 'overview' => array('title' => 'ACP_MANAGE_USERS', 'auth' => 'acl_a_user'), - 'feedback' => array('title' => 'ACP_USER_FEEDBACK', 'auth' => 'acl_a_user', 'display' => false), - 'profile' => array('title' => 'ACP_USER_PROFILE', 'auth' => 'acl_a_user', 'display' => false), - 'prefs' => array('title' => 'ACP_USER_PREFS', 'auth' => 'acl_a_user', 'display' => false), - 'avatar' => array('title' => 'ACP_USER_AVATAR', 'auth' => 'acl_a_user', 'display' => false), - 'rank' => array('title' => 'ACP_USER_RANK', 'auth' => 'acl_a_user', 'display' => false), - 'sig' => array('title' => 'ACP_USER_SIG', 'auth' => 'acl_a_user', 'display' => false), - 'groups' => array('title' => 'ACP_USER_GROUPS', 'auth' => 'acl_a_user && acl_a_group', 'display' => false), - 'perm' => array('title' => 'ACP_USER_PERM', 'auth' => 'acl_a_user && acl_a_viewauth', 'display' => false), - 'attach' => array('title' => 'ACP_USER_ATTACH', 'auth' => 'acl_a_user', 'display' => false), - ), - ); - } - - function install() - { - } - - function uninstall() - { - } -} - ?>
\ No newline at end of file |