vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   how would i do this... (https://vborg.vbsupport.ru/showthread.php?t=51710)

Tryfwar 04-16-2003 11:44 PM

how would i do this...
 
i have a an array which is is made up in a similar way to showgroups.php which basicly is a rollcall with various details listed in: http://forums.mortalis.com/rollcall.php

What i would like to do is have different font styles where any occurence of 'Guild Officer', 'Guild Member', 'Guild Leader'.

for e.g. all occurences of Guild Officer would be red and italic, any occurences of member would be green and normal.

Would it be at the stage when the array is built in the php or would it be a manipulation with html from within the forum template?

Thanks :)

Tryfwar 04-16-2003 11:55 PM

Here is where my array is built within rollcall.php
PHP Code:

while ($user $DB_site->fetch_array($users)) {
    if ((
$smodcount++ % 2) == 0) {
        
$backcolor "#94CDF8";
    } else {
        
$backcolor "#6699CC";
    }
    
    
douserinfo();
    
$userclassid $user['userclassid'];
    
$getuserstatus=$DB_site->query_first("SELECT title FROM useractive WHERE useractiveid=$user[activestatus]");
    
$getuserrace=$DB_site->query_first("SELECT title FROM userrace WHERE userraceid=$user[userraceid]");
    
$getusergroup=$DB_site->query_first("SELECT title FROM usergroup WHERE usergroupid=$user[usergroupid]");
    
$getuserrank=$DB_site->query_first("SELECT title FROM userrank WHERE userrankid=$user[userrankid]");
    
$getusergender=$DB_site->query_first("SELECT title FROM usergender WHERE usergenderid=$user[usergenderid]");
                        
    if (!
$grouptitle[$usergroupid]) {
            
$grouptitle[$userclassid] = $user['title'];
    }
        eval(
"\$groupinfo[$userclassid] .= \"".gettemplate("rollcall_bit")."\";");
}

if (
is_array($groupinfo)) {
    while(list(
$key$val) = each($groupinfo)) {
        
$classname $grouptitle["$key"];
        if (
substr($classname,-1)!="s") {
            
$classname.="s";
        }
        
$adminbits $val;
        eval(
"\$groupbits .= \"".gettemplate("rollcall_group")."\";");
    }
}

makeforumjump();
eval(
"dooutput(\"".gettemplate("rollcall")."\");"); 

And here is the contents of my template bit:

PHP Code:

<tr>
    <
td bgcolor="$backcolornowrap width=100%><a href="javascript:view_profile($user[magelo]);">$user[username$user[surname]</a>
    <
td bgcolor="$backcolornowrap>$getuserrace[title]&nbsp;</td>
    <
td bgcolor="$backcolornowrap>$getusergender[title]&nbsp;</td>
<
td bgcolor="$backcolornowrap>$getuserstatus[title]&nbsp;</td>
<
td bgcolor="$backcolornowrap>$getuserrank[title]&nbsp;</td



All times are GMT. The time now is 03:28 PM.

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.01006 seconds
  • Memory Usage 1,738KB
  • 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
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (2)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete