to previous topic Print topic to next topic

 Root :: Developments :: Tutorials and programming :: User Status
 Moderated by:
 
  Bottom  User Status
Rogue Posted: 15.06.2005, 06:52
Noob
Noob


registered: Apr 16, 2005
Posts: 4

Status:  offline
last visit: 15.06.05
Hi All,
I was wondering how you would add the members user status (eg: Admin, Mod, User) to the end of the welcome message.

Thanx in advance

Regards,
Rogue
Top  Rogue send PM Homepage
 
Chestnut Posted: 15.06.2005, 11:45
Site Admin
avatar

registered: Jun 02, 2002
Posts: 1320

Status:  offline
last visit: 07.02.08
mmm Wich welcome message ?

And although it is not necessarily difficult, the difficulty rises with the fact that a user can be a member of multiple groups. So the question could be : If a user is a member of X and Y and Z ... wich one has the priority ?
:wink:


Chestnut ! Cool
Site Admin
Top  Chestnut send PM Homepage
 
Rogue Posted: 15.06.2005, 15:58
Noob
Noob


registered: Apr 16, 2005
Posts: 4

Status:  offline
last visit: 15.06.05
[quote:c2d77fcb5d]mmm Wich welcome message ?[/quote]
In the header section of the theme.

This is what i have but it only shows the Admin.

Code
  1. echo "<td align=\"left\" width=\"25%\">&nbsp;&nbsp;<font color=\"$textcolor2\">Welcome, ".pnUserGetVar&#40;'uname')." ";
  2. if &#40;pnUserLoggedIn() and (!isset($op) or ($op == 'adminMain'))) {
  3. echo " &#40; Admin )";
  4.         &#125; else {
  5. echo " &#40; User )";
  6.         &#125;;
  7. echo "  </font>";


I think I am way off the mark :?
Top  Rogue send PM Homepage
 
Chestnut Posted: 15.06.2005, 16:04
Site Admin
avatar

registered: Jun 02, 2002
Posts: 1320

Status:  offline
last visit: 07.02.08
mmm not... off yes but not a lot :wink:

If you are on 750 and have legacy functions enabled (see your Settings), you can use this :

Code
  1. if &#40;pnUserLoggedIn()) {
  2.     if &#40;is_admin()) {
  3.         echo " &#40; Admin )";
  4.     &#125; else {
  5.         echo " &#40; User )";
  6.     &#125;
  7. &#125; else {
  8.     echo " &#40; Visitor )";
  9. &#125;
  10.  


Chestnut ! Cool
Site Admin
Top  Chestnut send PM Homepage
 



Powered by pnForum Version 2.0.1
DarkMindZ