|
|
Re: Link to "About Fudforum" in eGW [message #34683 is a reply to message #34677] |
Tue, 14 November 2006 16:56   |
kaype
 Messages: 10 Registered: September 2006 Location: Canada
Karma: 0
|
Junior Member |
|
|
Thanks Ilia, but what do I need to do to make sure make sure it loads GLOBALS.php before calling fud_use() function?
Here is my "class.fud_sidebox_hooks.inc.php" code.
<?php
/****************************************************************************\
* phpGroupWare - FUDforum 2.6.0 equivalent *
* http://fud.prohost.org/ *
* Written by Ilia Alshanetsky <ilia(at)prohost(dot)org> *
* ------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\****************************************************************************/
class fud_sidebox_hooks
{
function all_hooks($args)
{
if (!function_exists('db_saq')) {
fud_use('db.inc');
}
$GLOBALS['adm_file'] = array();
list($GLOBALS['fudh_uopt'], $theme_name) = db_saq("SELECT u.users_opt, t.name FROM phpgw_fud_users u INNER JOIN phpgw_fud_themes t ON t.id=u.theme WHERE u.id!=1 AND u.egw_id=".(int)$GLOBALS['phpgw_info']['user']['account_id']);
$GLOBALS['fudh_uopt'] = (int) $GLOBALS['fudh_uopt'];
if (!empty($GLOBALS['phpgw_info']['user']['apps']['admin'])) {
$GLOBALS['fudh_uopt'] |= 1048576;
}
include_once($GLOBALS['DATA_DIR'].'include/theme/'.str_replace(' ', '_', $theme_name).'/usercp.inc');
/* regular user links */
if (!empty($GLOBALS['t'])) {
display_sidebox('fudforum', lang('Preferences'), $GLOBALS['usr_file']);
}
/* admin stuff */
if ($GLOBALS['adm_file']) {
display_sidebox('fudforum', lang('Administration'), $GLOBALS['adm_file']);
}
}
}
?>
|
|
|
|
|
|
|
|
|
Re: Link to "About Fudforum" in eGW [message #34764 is a reply to message #34751] |
Fri, 17 November 2006 04:44   |
kaype
 Messages: 10 Registered: September 2006 Location: Canada
Karma: 0
|
Junior Member |
|
|
Yes! That did the trick! Thanks a ton!!
Now I am trying setup ACL using "Groups Manager", I am able to set up different forums with different access controls. Which works great for me.
Now the Q I have is, I have a super admin login for eGW and I have other users who are also admins. Now I want to know how can an admin create forums which cannot assessed by any users (including admins and super admin) other than the users set by that admin. Also other admins should not be able to edit/access these permissions.
Other applications in eGW like the file manager (myDMS) allows me to set such private permissions.
[Updated on: Fri, 17 November 2006 04:46] Report message to a moderator
|
|
|
|
|