Log in

View Full Version : Assign Physical Delete to a Specific User or Usergroup


AnhTuanCool
08-07-2004, 10:00 PM
What will it do, as I said on the title, it assigns the permission of showing Physical Delete Function to a Specific User or Usergroup. :devious:

Open up file editpost.php

Find:

$show['physicaldeleteoption'] = iif (can_moderate($threadinfo['forumid'], 'canremoveposts'), true, false);

Replace with:

if ($bbuserinfo['usergroupid'] == '6')
{
$show['physicaldeleteoption'] = iif (can_moderate($threadinfo['forumid'], 'canremoveposts'), true, false);
}
else
{
$show['physicaldeleteoption'] = false;
}
Save it up.

This line
if ($bbuserinfo['usergroupid'] == '6')
is showing the usergroup that have the permission to view(use) physical delete. You can look up in your admincp > Usergroup Manager to get your proper id that you want to have permission of viewing(using) physical del or you could change it to
if ($bbuserinfo['userid'] == '1')
and replace 1 with your userid.


If you install this plz click Install, this is my first hand hack so plz supporting me. :D Have a nice day.

Need screenshot, look at the attachment. ^__^

nexialys
08-08-2004, 09:55 AM
i know it's your first hack here, but i will suggest you to add a setting in the Usergroups manager instead of hardcoding the group number, so you can set the feature for each usergroup... that would benefit everyone!

AnhTuanCool
08-08-2004, 12:24 PM
I am studing that, thanks :)