Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.0 > vBulletin 3.0 Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Admin Signatures Parsed for vB Variables: by Logician Details »»
Admin Signatures Parsed for vB Variables: by Logician
Version: 1.01, by Neutral Singh Neutral Singh is offline
Developer Last Online: Feb 2016 Show Printable Version Email this Page

Version: 3.0.7 Rating:
Released: 05-22-2005 Last Update: 05-24-2005 Installs: 24
 
No support by the author.

Logician Hack : Admin signatures parsed for vb variables

Version 1.01 changes explained in the End of this post.

As the thread name suggests, credit for this cute little modification belongs to Logician, the gr8 vB Magician, who distributes hacks without even taking a credit for them.

Requested by: Myself :devious: --> here



Context
Searched through all vb.org website for this nature of hack and anything that visually comes near to this modification is /you /me hack but that hack did not suit my requirement. I wanted to show any vb variable of my liking in the signatures and this little modification by Logician does exactly the same and is much more dynamic... Any resemblance to my other hack is surely coincidental.

What this hack does ?
Pretty simple, this modification is only for Admin's signatures, which parses the admin signatures for all vb variables and presents it into a readable information.

Utility:
For example: i, as an admin, want my signatures to a show personalised message for members as follows:

Dear [Aman Singh], if you like spending your time at these forums then please consider making a donation. [more details here...]

Now, here the [membername] is dynamic and should change accordingly to every user who is reading the message in my signatures. After the modification, to achieve the above signatures, i enter the following information in my signatures:

Dear $bbuserinfo[username], if you like spending your time at these forums then please consider making a donation. [more details here...]

This mod makes the vb variable $bbuserinfo[username] dynamically change for each username to make the message a lot more personalised and more appealing. (and who knows someone might get encouraged to shell out a buck or two )

Some of useful vB variables are listed below:

Code:
$bbuserinfo[username] : Username of the visitor
$bbuserinfo[email] : email of the visitor
$bbuserinfo[icq] : icq number of the visitor
$bbuserinfo[aim] : aim nick of the visitor
$bbuserinfo[yahoo] : yahoo id of the visitor
$bbuserinfo[posts] : Post count of the visitor
$bbuserinfo[homepage] : Home page of the visitor
$bbuserinfo[field1] : Value of user profile 1 of the visitor
$bbuserinfo[field2] : Value of user profile 2 of the visitor
$bbuserinfo[field3] : Value of user profile 3 of the visitor
$bbuserinfo[joindate]
$bbuserinfo[lastvisit]
$bbuserinfo[lastactivity]
$bbuserinfo[lastpost]
$bbuserinfo[reputation]
$bbuserinfo[pmtotal]
$bbuserinfo[pmunread]
$bbuserinfo[lastvisitdate]
(List compiled from gr8 WebTemplates Content Management System by Logician --> here) and kind help by Zero Tolerance

File Edits : Two

Files to Edit :
i) forum_root/includes/functions_showthread.php
ii) forum_root/member.php

Difficulty : Still, one of the easiest hacks ever.

Installation Time : Now it takes less than 3 mintues to apply the hack.

Instructions :

Code:
Edit includes/functions_showthread.php

FIND
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
$post['signature'] = parse_bbcode($post['signature'], 'nonforum', $vboptions['allowsmilies']);
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

ADD BELOW:
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
				// Logician Hack : Admin signatures parsed for vb variables
				if ($post['usergroupid']==6) 
				{
					@eval('$post[signature] = "' . addslashes($post['signature']) . '";');
					$post['signature'] = stripslashes($post['signature']);
				}
				// Logician Hack : Admin signatures parsed for vb variables
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

That's all. ;)

Logician \\=^))

Modificaton done by Aurous --> here
This mod helps in parsing the signatures properly in member profiles.

Code:
In member.php:

Search for:

// signature
if ($userinfo['signature'])
{
	require_once('./includes/functions_bbcodeparse.php');


Below, add this code:


// Logician Hack : Admin signatures parsed for vb variables
				if ($userinfo['usergroupid']==6) 
				{
					@eval('$userinfo[signature] = "' . addslashes($userinfo['signature']) . '";');
					$userinfo['signature'] = stripslashes($userinfo['signature']);
				}
// Logician Hack : Admin signatures parsed for vb variables
Versions Changes:

1.01 : Added modification by Aurous at post#8, this helps properly parsing the signatures in member profiles as well. Thanks Aurous.
1.00 : Released

Instructions are attached herewith.
The snapshot is attached herewith.

Hey You!! Dont Forget to hit INSTALL !!
Enjoy !!
Aman Singh

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #2  
Old 05-23-2005, 12:50 PM
Polo's Avatar
Polo Polo is offline
 
Join Date: Jun 2004
Posts: 893
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Nice, thank you
Reply With Quote
  #3  
Old 05-23-2005, 03:14 PM
FightRice.com FightRice.com is offline
 
Join Date: Mar 2005
Posts: 124
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a list of the $bb variables we can use with this hack...

*Installed
Reply With Quote
  #4  
Old 05-23-2005, 04:57 PM
swantonio's Avatar
swantonio swantonio is offline
 
Join Date: Aug 2004
Posts: 39
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

*Installed
Reply With Quote
  #5  
Old 05-23-2005, 05:52 PM
jugo jugo is offline
 
Join Date: Feb 2004
Location: Reading your emails.
Posts: 573
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

/me installs.....And starts to ponder quirky little games to play with board members...heh heh heh!!!

Thanks.
Reply With Quote
  #6  
Old 05-24-2005, 04:18 AM
Neutral Singh's Avatar
Neutral Singh Neutral Singh is offline
 
Join Date: Sep 2004
Location: Sikh Philosophy Network
Posts: 545
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by FightRice.com
Is there a list of the $bb variables we can use with this hack...
Yes, added some useful variables in the first post above.

**Please be aware that some of variables may display information only if that field has been filled in by the members like e.g. AIM, ICQ, YAHOO **

Enjoy !!
Reply With Quote
  #7  
Old 05-24-2005, 04:38 AM
bigcurt's Avatar
bigcurt bigcurt is offline
 
Join Date: Nov 2004
Location: KierDarby.php
Posts: 1,009
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very, VERY nice. Congrats 2 both.
Reply With Quote
  #8  
Old 05-24-2005, 09:21 PM
Aurous Aurous is offline
 
Join Date: Apr 2004
Posts: 138
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

people can see the code in profile here's an easy fix for that

In member.php:

Search for:
Code:
// signature
if ($userinfo['signature'])
{
	require_once('./includes/functions_bbcodeparse.php');
Below, add this code:

Code:
				if ($userinfo['usergroupid']==6) 
				{
					@eval('$userinfo[signature] = "' . addslashes($userinfo['signature']) . '";');
					$userinfo['signature'] = stripslashes($userinfo['signature']);
				}
Reply With Quote
  #9  
Old 05-25-2005, 12:39 AM
Neutral Singh's Avatar
Neutral Singh Neutral Singh is offline
 
Join Date: Sep 2004
Location: Sikh Philosophy Network
Posts: 545
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh Yes!! :devious: Thanks a lot for enhancing the integrity of the hack. I have updated the first post with due credits to your modification.

Enjoy !!
Reply With Quote
  #10  
Old 05-25-2005, 05:11 AM
yinyang's Avatar
yinyang yinyang is offline
 
Join Date: May 2004
Location: Los Angeles
Posts: 580
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

*clicks install*

this is awesome. is there a place where i can get the complete list of vB variables?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:13 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.06153 seconds
  • Memory Usage 2,306KB
  • Queries Executed 23 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (5)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (9)postbit
  • (10)postbit_onlinestatus
  • (10)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete