Update of /cvsroot/phpslash/phpslash-ft/public_html
In directory usw-pr-cvs1:/tmp/cvs-serv22933/phpslash-ft/public_html
Modified Files:
config.php3
Log Message:
Permission Groups
Index: config.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v
retrieving revision 1.140
retrieving revision 1.141
diff -C2 -d -r1.140 -r1.141
*** config.php3 21 May 2002 15:02:03 -0000 1.140
--- config.php3 23 May 2002 18:38:54 -0000 1.141
***************
*** 99,102 ****
--- 99,103 ----
$_PSL['module']['Author'] = true;
$_PSL['module']['Variable'] = false;
+ $_PSL['module']['Group'] = true;
$_PSL['show_admin_on_navbar'] = true; // turns the Admin link on in the navbar
***************
*** 371,374 ****
--- 372,381 ----
'module' => "Infolog"
);
+ $menuitem[] = array(
+ 'name' => "Group",
+ 'link' => $_PSL['adminurl'] . "/groupAdmin.php3",
+ 'perm' => "groupAdmin",
+ 'module' => "Group"
+ );
$_PSL['menuitem'] = $menuitem; // add default menuitems to global array
***************
*** 391,394 ****
--- 398,402 ----
// 2.2) PHPLIB Perm Class extension
+ /*
$_PSL['perm_array'] = array(
"nobody" => 2,
***************
*** 409,413 ****
"root" => 2147483648
);
!
// 2.3) PHPSlash<->phplib interface classes
require($_PSL['classdir'] . "/slashDB.class");
--- 417,421 ----
"root" => 2147483648
);
! */
// 2.3) PHPSlash<->phplib interface classes
require($_PSL['classdir'] . "/slashDB.class");
***************
*** 469,472 ****
--- 477,483 ----
if ($_PSL['module']['Variable']) {
require($_PSL['classdir'] . "/Variable.class");
+ }
+ if ($_PSL['module']['Group']) {
+ require($_PSL['classdir'] . "/Group.class");
}
|