View Single Post
  #1  
Old 03-07-2011, 07:18 AM
fowlplay4 fowlplay4 is offline
team canada
fowlplay4's Avatar
Join Date: Jul 2004
Location: Canada
Posts: 5,200
fowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond reputefowlplay4 has a reputation beyond repute
Account Upgrade Status

Due to the introduction of Community names there has been what I consider 4 different account types.

- Gold
- Classic
- Community (People with an actual community name not Graal######)
- Trial

This snippet will let you identify them accordingly, and provide a proper string for use in profiles.

PHP Code:
function getUpgradeStatus(pl) {
  
temp.status pl.upgradestatus;
  switch (
pl.upgradestatus) {
    case 
"gold":
      
temp.status "Gold";
      break;
    case 
"classic":
      
temp.status "Classic";
      break;
    case 
"trial":
      if (
pl.communityname && !pl.communityname.starts("Graal")) {
        
temp.status "Community";
      } else {
        
temp.status "Trial";
      }
      break;
  }
  return 
temp.status;

__________________
Quote:

Last edited by fowlplay4; 03-07-2011 at 07:37 AM..
Reply With Quote