Mysidia Adoptables Support Forum

Mysidia Adoptables Support Forum (http://www.mysidiaadoptables.com/forum/index.php)
-   Mys v1.1.x Mods (http://www.mysidiaadoptables.com/forum/forumdisplay.php?f=20)
-   -   Adding users rank to their profiles. (EASY) (http://www.mysidiaadoptables.com/forum/showthread.php?t=1887)

Tony 02-06-2011 12:03 PM

Adding users rank to their profiles. (EASY)
 
Hey guys, sorry I haven't been on in a day or two, been taking a break from programming, here's a very simple mod. Also, I'm working on a banking system, i'm about 1/3 done. wish me luck!

Profile.php

find:
PHP Code:

$avatar=@mysql_result($result,$i,"imagelocation");
    
$usersname=@mysql_result($result,$i,"username");
    
$usersgroup=@mysql_result($result,$i,"usergroup");
    
$website=@mysql_result($result,$i,"website");
    
$aim=@mysql_result($result,$i,"aim");
    
$yahoo=@mysql_result($result,$i,"yahoo");
    
$msn=@mysql_result($result,$i,"msn");
    
$membersince=@mysql_result($result,$i,"membersince"); 

add:
PHP Code:

    $avatar=@mysql_result($result,$i,"imagelocation");
    
$usersname=@mysql_result($result,$i,"username");
    
$usersgroup=@mysql_result($result,$i,"usergroup");
    
$website=@mysql_result($result,$i,"website");
    
$aim=@mysql_result($result,$i,"aim");
    
$yahoo=@mysql_result($result,$i,"yahoo");
    
$msn=@mysql_result($result,$i,"msn");
    
$membersince=@mysql_result($result,$i,"membersince");
    
$rank=@mysql_result($result,$i,"usergroup"); 

find:
PHP Code:

if($avatar == ""){
    
$avatar "This user doesn't have an avatar uploaded.";
    }
    
    if(
$website == ""){
    
$website "No Website Information Given";
    }
    else{
    
$website "<a href='".$website."' target='_blank'>".$website."</a>";
    }

    if(
$msn == ""){
    
$msn "No MSN Information Given";
    }
    
    if(
$aim == ""){
    
$aim "No AIM Information Given";
    }

    if(
$yahoo == ""){
    
$yahoo "No YIM Information Given";
    } 

add:
*note Use a switch statement if you'd prefer it.
PHP Code:

if($rank == 1){ 
    
$rank "Owner";
    }
    
    if(
$rank == 2){ 
    
$rank "Administrator";
    }
    
    if(
$rank == 3){ 
    
$rank "Registered users";
    }
    
    if(
$rank == 4){ 
    
$rank "Artist";
    } 

find:
PHP Code:

$article_title $userdisp."'s Profile:";
    
$article_content "<b><u>".$lang_basic_info."".$usersname.":</u></b><br><br>
    <img src='templates/icons/web.gif'> "
.$website."<br>
    <img src='templates/icons/aim.gif'> "
.$aim."<br>
    <img src='templates/icons/msn.gif'> "
.$msn."<br>
    <img src='templates/icons/yahoo.gif'> "
.$yahoo."<br> 

change to:
PHP Code:

    $article_title $userdisp."'s Profile:";
    
$article_content "<b><u>".$lang_basic_info."".$usersname.":</u></b><br><br><img src='templates/icons/star.gif'> ".$rank."<br />
    <img src='templates/icons/web.gif'> "
.$website."<br>
    <img src='templates/icons/aim.gif'> "
.$aim."<br>
    <img src='templates/icons/msn.gif'> "
.$msn."<br>
    <img src='templates/icons/yahoo.gif'> "
.$yahoo."<br> 

If there's an extra line break or two in there, feel free to remove it. I have more than a few mods added to the profile page, so there may be some spaces I left out by accident. (:


All times are GMT -5. The time now is 01:25 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.