1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00

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
This commit is contained in:
Meik Sievertsen
2006-03-25 19:14:55 +00:00
parent 64fbadf3d6
commit 1a8c91b0d4
83 changed files with 1604 additions and 1162 deletions

View File

@@ -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()
{
}
}
?>