vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Forum Leaders (https://vborg.vbsupport.ru/showthread.php?t=48000)

Kars10 01-28-2003 09:38 AM

NP :)

Roody 02-04-2003 01:57 PM

hey man. Just dropping you a line to see if you have came up with anything yet? :)

Roody 02-08-2003 10:16 AM

bumping this back up for Kars. :)

Erwin 02-08-2003 10:58 AM

To change the order of usergroups, you basically need to add the new admin or moderator usergroup, or any other usergroup, into your showgroups.php in the order you want it to appear, by doing this.

To do this, follow these instructions.

1) You need to find out the usergroupid of the usergroup you want to change the order of.

2) Make sure in the Admin CP, Usergroup, Edit, it is set to "Yes" for Showgroups.

3) Assuming this is a new moderator usergroup, which you want to show after the Admin usergroup, but before the Moderator usergroup, do this:

Open showgroups.php:

Find:

PHP Code:

    if ($usergroupid == 6) { // Admins
        
eval("\$admininfo .= \"".gettemplate("showgroups_adminbit")."\";");
        
$admingrouptitle=$user['title']; 

BELOW, ADD:

PHP Code:

    } else if ($usergroupid == XX) { // New usergroup
        
eval("\$usergroupXX .= \"".gettemplate("showgroups_adminbit")."\";");
        
$usergroupXXtitle=$user['title']; 

Change XX (which occurs THREE TIMES in the code) to the usergroupid you want to add.

You can add multiple copies of this.

4) Then, find:

PHP Code:

if ($admininfo) {
    if (
$admingrouptitle=='') {
      
$groupname 'Administrators';
    } else {
        
$groupname $admingrouptitle;
    }
    if (
substr($groupname,-1)!="s") {
        
$groupname.="s";
    }

    
$adminbits $admininfo;
    eval(
"\$groupbits .= \"".gettemplate("showgroups_group")."\";");


BELOW, ADD:

PHP Code:

if ($usergroupXX) {
    if (
$usergroupXXtitle=='') {
      
$groupname 'NewName';
    } else {
        
$groupname $usergroupXXtitle;
    }
    if (
substr($groupname,-1)!="s") {
        
$groupname.="s";
    }

    
$adminbits $usergroupXX;
    eval(
"\$groupbits .= \"".gettemplate("showgroups_group")."\";");


Change XX (which occurs FOUR TIMES) to the usergroupid number, and change 'NewName' to the name of the new Usergroup.

You can add more of these if you wish as well, as long as each of this is paired with additions to the previous section.

That's it! You can work it out yourself, the finer details... :)

SS9267547 04-03-2003 10:00 AM

Not sure if you know Roody but afterlab released a hack for those wanting to change the order of usergroups. The hacks in the link below. For information on it head on over there.

https://vborg.vbsupport.ru/showthrea...ght=showgroups

Roody 04-03-2003 05:39 PM

Thx I appreciate the link. :)

SS9267547 04-05-2003 04:52 AM

No problem, was searching for this myself and noticed your post so I thought I would let you know as well :)


All times are GMT. The time now is 01:42 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01273 seconds
  • Memory Usage 1,745KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (7)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete