Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 01-13-2009, 09:35 PM
dfc005 dfc005 is offline
 
Join Date: Mar 2008
Posts: 198
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Member Profile Hook Location

Hey guys,

I've written a little plugin to calculate some stats about a users posting. I'd like to add these new stats to the "Statistics" tab on the members profile page. So, added the variables to the 'memberinfo_block_statistics' template but can't seem to get it to work for the life of me.

Any idea what hook I need to use for that to work? Have tried a bunch including 'member_complete' and 'profile_complete' but non seem to work.

My plugin does the right calculations as I can print out the stats from within the plugin, they just never seem to show up in my templates.

Cheers.
Reply With Quote
  #2  
Old 01-13-2009, 10:37 PM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

How about member_build_blocks_start? Take a look at the member.php page and see all the hooks in there, don't just randomly pick one from the drop-down (profile hooks are from a complete different page).
Reply With Quote
  #3  
Old 01-13-2009, 10:50 PM
dfc005 dfc005 is offline
 
Join Date: Mar 2008
Posts: 198
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmmm, OK. The hooks on the member.php page are....

member_start
member_start_fetch_user
member_execute_start
member_build_blocks_start
member_complete

Tried all of those and no dice. As I said, I've added the variables to be outputted into the 'memberinfo_block_statistics' template. It has a template hook called 'profile_stats_first' right at the start of it which was why I was using the profile hooks.
Reply With Quote
  #4  
Old 01-13-2009, 11:30 PM
Bellardia Bellardia is offline
 
Join Date: Jul 2007
Location: Hamilton, Ontario
Posts: 378
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Are you sure it's the hooks that aren't working and not the code?
Reply With Quote
  #5  
Old 01-13-2009, 11:34 PM
dfc005 dfc005 is offline
 
Join Date: Mar 2008
Posts: 198
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Righto, I put an echo in the plugin to print out the new stat. Using member_build_blocks_start, I see the stat at the top of the page but not in the Statistics tab like it should be.

So, I assume the plugin is being executed but the code I have in the template is not working then?

Here's the code quickly....

Plugin
PHP Code:
    $stats$db->query_read("
    SELECT round(sum(replycount)/count(*),2) AS average, round(sum(views)/count(*),2) AS strikerate 
    FROM `thread` 
    WHERE `forumid` != 384 
    AND `forumid` != 20 
    AND `forumid` != 375 
    AND `postuserid` = 
$userinfo[userid]
"
);

$stat $db->fetch_array($stats);
$thread_average $stat['average'];
$thread_strikerate $stat['strikerate'];

echo 
$thread_average
Template
PHP Code:
    <li><span class="shade">$vbphrase[total_posts]:</span$prepared[posts]</li>
    <
li><span class="shade">$vbphrase[posts_per_day]:</span$prepared[postsperday]</li>
    <
li><span class="shade">Thread Average (replies):</span$thread_average</li>
    <
li><span class="shade">Thread Strike Rate (views):</span$thread_strikerate</li
Am I missing something?
Reply With Quote
  #6  
Old 01-14-2009, 02:32 AM
Lynne's Avatar
Lynne Lynne is offline
 
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

In your template, try calling it $GLOBALS[thread_average] instead.
Reply With Quote
  #7  
Old 01-14-2009, 02:41 AM
dfc005 dfc005 is offline
 
Join Date: Mar 2008
Posts: 198
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bingo! That works wonderfully now. Cheers Lynne!
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 11:21 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.09106 seconds
  • Memory Usage 2,230KB
  • Queries Executed 13 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (7)postbit_onlinestatus
  • (7)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete