vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Add-On Releases - [AJAX] Helpful Answers - Allow users to rate individual posts (https://vborg.vbsupport.ru/showthread.php?t=233296)

SamDelgado 05-24-2010 08:59 PM

Anyone know when we can expect the next release?

Ted S 05-25-2010 02:38 AM

Quote:

Originally Posted by SamDelgado (Post 2042862)
Anyone know when we can expect the next release?

There is a planned update for the 3.8 version. 4.0 update will come when I have enough useful features and/or correct the profile display bug.

SamDelgado 05-25-2010 05:05 AM

Sounds good

GONUMBER6 05-28-2010 01:31 PM

Ted thank you for this wonderful mod, I have been using it a few months now.

In order to stimulate user activity, I have installed vbactivity and the points market system.

Is there anyway to make it so that my users get points to their reputation in vbactivity? Right now even though I have helpful answers set to give reputation, it does not calculate rep points.

Dragonbyte Tech (maker of vbactivity) said this about the coding:
Quote:

That applies for when people give eachother reputation using vBulletin's own reputation system.
It will support the Helpful Answers mod only if that mod was coded to add reputation in the same way vBulletin adds reputation.
Can this be achieved somehow?

Thanks :)

mad@Max 05-28-2010 03:27 PM

Ted S, how about this js
Code:

function helpfulanswers_rate(postid, rank)
{       
        var xml = new vB_AJAX_Handler();
        xml.callback = function(o){
                fetch_object('helpfulanswers_box_' + postid).innerHTML = o.responseText;
        };
        xml.send('helpfulanswers.php', '&do=helpfulanswer&using_ajax=1&p=' + postid + '&rank=' + rank);

        return false;
}

that much more laconically:)

sticky 06-03-2010 04:54 AM

Is there any way to make this work with the "reputation user spread" option? It seems to not pay attention to it and allow someone to neg rep the same user multiple times.

wesooby 06-03-2010 10:06 AM

Hello Ted!

Well - you are AWESOME, of course! This mod IS Mod! :)

I was wondering if there's any way to add an "Including YOU!" phrase to the Thanks given indicator?

Something like this:

2 out of 2 members found this post helpful. Including YOU! : ) Thank you for rating this post!

and then after

2 out of 2 members found this post helpful. Including YOU! : )

So that users revisiting posts after a while will see what they've already done?

Thanks!! :) :)

Ted S 06-03-2010 03:01 PM

Quote:

Originally Posted by wesooby (Post 2047542)
Hello Ted!

Well - you are AWESOME, of course! This mod IS Mod! :)

I was wondering if there's any way to add an "Including YOU!" phrase to the Thanks given indicator?

Something like this:

2 out of 2 members found this post helpful. Including YOU! : ) Thank you for rating this post!

and then after

2 out of 2 members found this post helpful. Including YOU! : )

So that users revisiting posts after a while will see what they've already done?

Thanks!! :) :)

Do you know much about template conditionals?

wesooby 06-08-2010 05:52 AM

Hello Ted!!

Don't know too much... but if you could sketch out the basic idea I think I could give it a shot.

T H A N K S ! ! ! :) :)

persianpros 06-10-2010 09:35 AM

Persian Language For Helpful Answers

By Persian Prince

Good Luck

FractalizeR 06-11-2010 10:58 AM

Ted, if you need help with mod... Why not to thematically split it into several *.php files so that there are only require_once() statements left in *.xml and use Launchpad for example for development?

It's hard to code in one big xml file and checkins/checkouts by several devs are not possible in this way.

I think there will be several devs, that are interested in helping with development including me.

Ted S 06-11-2010 05:36 PM

Quote:

Originally Posted by FractalizeR (Post 2051989)
Ted, if you need help with mod... Why not to thematically split it into several *.php files so that there are only require_once() statements left in *.xml and use Launchpad for example for development?

It's hard to code in one big xml file and checkins/checkouts by several devs are not possible in this way.

I think there will be several devs, that are interested in helping with development including me.

Completely open on bringing others in here, what functions do you see adding includes support for?

FractalizeR 06-12-2010 07:04 AM

I suggested to split *.xml into several *.php files only to ease collaboration. For example, I can work on adding mod data to user's profile and for that there should be ha_userprofile.php with the code for appropriate hook. And you just require_once() this file in main *.xml. I will be able to checkin/checkout this file independently from others and will not interrupt any other work.

mad@Max 06-12-2010 10:45 AM

FractalizeR, is not a panacea:)

FractalizeR 06-13-2010 12:31 PM

Panacea for what? I don't get you.

mad@Max 06-13-2010 05:18 PM

Выводить код в файлы для увеличения производительности. Плюс получим небольшое неудобство в редактировании:)

Ted S 06-14-2010 04:13 AM

Quote:

Originally Posted by FractalizeR (Post 2052390)
I suggested to split *.xml into several *.php files only to ease collaboration. For example, I can work on adding mod data to user's profile and for that there should be ha_userprofile.php with the code for appropriate hook. And you just require_once() this file in main *.xml. I will be able to checkin/checkout this file independently from others and will not interrupt any other work.

I'm not seeing the added benefit of the require files for splitting things up but I am all for making this extendable, and not just by me.

How about I add a hook to cover additional modules, you write your profile data tool and make it an addon release. I'm glad to support any modifications to the core code but this would help avoid the multiple devs working on the same source that you identified.

Aside from the profile I'm actually rather low on user input so I'm crafting up more ideas of my own. Lots of the stuff to do is really documenting... things like profile votes exist (for showing in posts), I just need to educate on how to use them better.

FractalizeR 06-14-2010 07:13 AM

Quote:

Originally Posted by mad@Max (Post 2053025)
To push code out to files to increase performance. Plus we will get a minor inconvenience for code editing

Please speak English here. I am not suggesting to split code out to files to increase performance. However, that will increase it if server have APC or similar op cache installed. VBulletin is executing it's hooks via eval() and that sucks in performance.

I am suggesting to split plugin into several files by functionality to improve the ability to collaborate. Editing one XML is like editing a... I don't know... Will you be able to code editor like Microsoft Paint all in one C++ source code file? Is that convenient? Of course, you can pull code parts out of XML at least to have some code highlighting and after editing - put it back there. But is that convenient? I prefer rich IDEs like Zend Studio for writing code. And they are, of course, no suitable for editing XML files with embedded PHP code.

Also if something like Git will be used, we will be able to push code for review by Ted and he will be able to easily pull it and import into the project.

Quote:

Originally Posted by Ted S
Aside from the profile I'm actually rather low on user input so I'm crafting up more ideas of my own. Lots of the stuff to do is really documenting... things like profile votes exist (for showing in posts), I just need to educate on how to use them better.

So... should we craft some code example on integrating data to user profile? Can you send me your latest plugin XML so that I could try to do that? FractalizeR@yandex.ru.

Ted S 06-15-2010 04:38 AM

Quote:

Originally Posted by FractalizeR (Post 2053325)
So... should we craft some code example on integrating data to user profile? Can you send me your latest plugin XML so that I could try to do that? FractalizeR@yandex.ru.

I was actually suggesting you write what you want and I'll make it work as an addon. This way you can modify as you see fit, and I can build any support needed to make it work.

I don't see a check in/ checkout system making sense for this mod as it's a pretty small project but am very open to supporting other coders working on addons / edits for it as needed.

FractalizeR 06-21-2010 06:35 AM

Patch for member profile info for 2.3.0:

1. Add to cache_templates hook:

PHP Code:

                if (THIS_SCRIPT == 'member')
                {
                    if(
$vbulletin->options['helpans_stats_ten']) {
                        
$cache[] = 'helpful_statsbit_ten';
                    } else {
                        
$cache[] = 'helpful_statsbit';
                    }
                } 



2. Delete member_build_blocks_start hook and make member_profileblock_fetch_unwrapped hook with the following contents instead:
PHP Code:

        <plugin active="1" executionorder="100">
            <
title>Helpful Answers -- Profile Stats</title>
            <
hookname>member_profileblock_fetch_unwrapped</hookname>
            <
phpcode><![CDATA[
            
            if (
$this->registry->options['helpans_stats_votes'] OR $this->registry->options['helpans_stats_ranks'] OR $this->registry->options['helpans_stats_ten']){
                
                
// if we're using standard 0/1 voting show counts
                
if(!$this->registry->options['helpans_rank_ten']){
                
                    if (
$this->registry->options['helpans_stats_votes']){
                    
$helpfulanswer $this->registry->db->query_first_slave("
                        SELECT COUNT(helpfulanswerid) as count 
                        FROM " 
TABLE_PREFIX "helpfulanswer as helpfulanswer
                        WHERE userid = " 
intval($userinfo['userid']) . "
                    "
);    
                    }
                    
                    if (
$this->registry->options['helpans_stats_ranks']){
                    
$helpfulposts $this->registry->db->query_first_slave("
                        SELECT SUM(helpfulpost.goodrank) as goodranks,SUM(helpfulpost.totalrank) as totalranks
                        FROM " 
TABLE_PREFIX "helpfulpost as helpfulpost
                        INNER JOIN " 
TABLE_PREFIX "post AS post ON(post.postid = helpfulpost.postid)
                        WHERE post.userid = " 
intval($userinfo['userid']) . "
                        GROUP by post.userid
                    "
);
                    }
                    
                    
$helpfulposts['badranks'] = $helpfulposts['totalranks'] - $helpfulposts['goodranks'];
                    if(
$helpfulposts['goodranks'] > AND $helpfulposts['totalranks'] > 0){ $helpfulposts['average'] = ($helpfulposts['goodranks'] / $helpfulposts['totalranks']); }
                    
                    (
$hook =  vBulletinHook::fetch_hook('helpfulanswers_user_stats')) ? eval($hook) : false;
                    
                    
$templater vB_Template::create('helpful_statsbit');
                    
$templater->register('helpfulanswer_count'$helpfulanswer['count']);
                    
$templater->register('helpfulanswer_goodranks'$helpfulposts['goodranks']);
                    
$templater->register('helpfulanswer_totalranks'$helpfulposts['totalranks']);
                    
$templater->register('helpfulanswer_badranks'$helpfulposts['badranks']);
                    
$templater->register('helpfulanswer_average'$helpfulposts['average']);
                    
$template_hook['profile_stats_last'] .= $templater->render();
                                
                
                
// if we're using 10 scale votes show different
                
} else {
                
                    if (
$this->registry->options['helpans_stats_ten']){
                    
                        
$helpfulposts $this->registry->db->query_first_slave("
                            SELECT SUM(helpfulpost.goodrank) as goodrank, SUM(helpfulpost.totalrank) as totalranks
                            FROM " 
TABLE_PREFIX "helpfulpost as helpfulpost
                            INNER JOIN " 
TABLE_PREFIX "post AS post ON(post.postid = helpfulpost.postid)
                            WHERE post.userid = " 
intval($userinfo['userid']) . "
                            GROUP by post.userid
                        "
);
                        
                        if(
$helpfulposts['goodrank'] && $helpfulposts['totalranks'] > 0){ $helpfulposts['avgrank'] = $helpfulposts['goodrank'] / $helpfulposts['totalranks']; }
                        
$helpfulposts['avgrank'] = number_format($helpfulposts['avgrank'], 1'.'' ');
                        
                        
$templater vB_Template::create('helpful_statsbit_ten');
                        
$templater->register('helpfulanswer_goodranks'$helpfulposts['goodranks']);
                        
$templater->register('helpfulanswer_totalranks'$helpfulposts['totalranks']);
                        
$templater->register('helpfulanswer_badranks'$helpfulposts['badranks']);
                        
$templater->register('helpfulanswer_average'$helpfulposts['average']);
                        
$template_hook['profile_stats_last'] .= $templater->render();
                        
                    }
                
                }
    
            }
            
            ]]></
phpcode>
        </
plugin

Also you can find ideas for next versions here: https://vborg.vbsupport.ru/showpost....&postcount=362

FractalizeR 06-21-2010 07:00 AM

Localization bugs found and fixed:

helpful_statsbit_ten and helpful_statsbit should be fully phrased. Add the following phrases:
Code:

<phrase name="helpfulanswer_helpfulansw" date="0" username="Ted S" version="1.3.1"><![CDATA[Helpful answers]]></phrase>
<phrase name="helpfulanswer_from" date="0" username="Ted S" version="1.3.1"><![CDATA[from]]></phrase>
<phrase name="helpfulanswer_times" date="0" username="Ted S" version="1.3.1"><![CDATA[times]]></phrase>
<phrase name="helpfulanswer_posts" date="0" username="Ted S" version="1.3.1"><![CDATA[posts]]></phrase>

and phrase template:

PHP Code:

        <template name="helpful_statsbit" templatetype="template" username="Ted S" version="2.1.0"><![CDATA[
        
            <
h5 class="subsubsectionhead">{vb:rawphrase helpfulanswer_title}</h5>
            <
div class="blockrow">
                <
vb:if condition="$helpfulanswer_count">
                <
dl class="stats">
                    <
dt>{vb:rawphrase helpfulanswer_postsrated}</dt>
                    <
dd>{vb:raw helpfulanswer_count} {vb:raw helpfulanswer_posts}</dd>
                </
dl>
                </
vb:if>
                <
vb:if condition="$helpfulanswer_goodranks">
                <
dl class="stats">
                    <
dt>{vb:rawphrase helpfulanswer_postshavebeen}</dt>
                    <
dd>{vb:raw helpfulanswer_helpfulansw} {vb:raw helpfulanswer_goodranks} {vb:raw helpfulanswer_from} {vb:raw helpfulanswer_totalranks} {vb:raw helpfulanswer_times}</dd>
                </
dl>
                </
vb:if>
            </
div>
                
        ]]></
template


FractalizeR 06-21-2010 07:48 AM

The only thing I lack now (and that prevent me from starting using this addon on main forum) is the possibility for moderation staff to view how and who rated specified thread + the ability to cancel specific / all voting on it. Also that would be good to have an ability to close specific thread to voting completely. Some "holy war" threads could be locked from the beginning this way.

sticky 06-21-2010 11:18 AM

Quote:

Originally Posted by sticky (Post 2047465)
Is there any way to make this work with the "reputation user spread" option? It seems to not pay attention to it and allow someone to neg rep the same user multiple times.

Ted, would you be able to help with me with this please? I use helpful answers with the rep system but users are abusing the neg reps.

vivamexico55 06-21-2010 02:47 PM

Hi!

I just upgraded to 4.04 and the image to +1 is not showing, any idea why?

vivamexico55 06-21-2010 05:09 PM

Quote:

Originally Posted by vivamexico55 (Post 2056943)
Hi!

I just upgraded to 4.04 and the image to +1 is not showing, any idea why?

This is driving me crazy, I can see in the postbit that there's a line added when I enable the product and it goes away when I disable it, so something is happening, but the +1 image is not showing anymore.

Nothing actually changed besides updating the style, but I already uploaded the images to the new style. I've double checked that plugins are enabled, I re-ran the forum bulk enabler, I'm going crazy.

Anyone else upgraded to 4.04 and had this plugin disappear?

edit: When I say "+1 image" I mean the thumbs up, I disabled thumbs down

FractalizeR 06-21-2010 06:08 PM

Can you post HTML here? Are you using 10-point system?

vivamexico55 06-21-2010 06:39 PM

I'm using "Thumbs up/down" system. I can sure post HTML if it's not against the rules:

HTML Code:

        <div class="posthead">
                <label for="post_imod_checkbox_598184">
                <span class="postdate old">
               
                <span class="date">Proximos Conciertos 2010, 12-nov-2009</span>
               
                </span>
                </label>
                <span class="nodecontrols">
                <!-- vBSkinworks Modification: Moved post control links from bottom left to top right -->
               
               
                        <a title="Add Infraction for dball" href="infraction.php?do=report&amp;p=598184" rel="nofollow"><img src="images/custom/vuel/buttons/infraction.gif" alt="Add Infraction for dball" /></a>
               
               
                        <a title="Reportar post" href="report.php?p=598184" rel="nofollow"><img src="images/custom/vuel/buttons/report.gif" alt="Reportar post" /></a>
               
               
               
                        <a name="post598184" href="showthread.php?51405-Proximos-Conciertos-2010&amp;p=598184&amp;viewfull=1#post598184" class="postcounter">#1</a>
               
               
                        <input class="postimod" type="checkbox" id="post_imod_checkbox_598184" name="plist[598184]" value="0" />
               
                </span>
        </div>
        <div class="postdetails">
                <div class="userinfo">
                        <!-- vBSkinworks Modification: Moved a user title, rank, rep, and avatar into the "username_container" div which is center-aligned -->
                        <div class="username_container">
                       
                                <div class="popupmenu memberaction">
        <a class="username offline popupctrl" href="member.php?230-dball" title="dball no ha iniciado sesi?n"><strong>dball</strong></a>
        <ul class="popupbody popuphover memberaction_body">
                <li class="left">
                        <img src="images/custom/vuel/site_icons/profile.png" alt="" />
                        <a href="member.php?230-dball">
                                Ver perfil
                        </a>
                </li>
               
                <li class="right">
                        <img src="images/custom/vuel/site_icons/forum.png" alt="" />
                        <a href="search.php?do=finduser&amp;userid=230&amp;contenttype=vBForum_Post&amp;showposts=1" rel='nofollow'>
                                Ver posts del Foro
                        </a>
                </li>
               
               
                <li class="left">
                        <img src="images/custom/vuel/site_icons/message.png" alt="" />
                        <a href="private.php?do=newpm&amp;u=230" rel='nofollow'>
                                Mensaje privado
                        </a>
                </li>
               
               
               
               
               
               
               
                <li class="right">
                        <img src="images/custom/vuel/site_icons/article.png" alt="" />
                        <a href="list.php/author/230-dball" rel='nofollow'>
                                Ver art?culos publicados
                        </a>
                </li>
               

               
                <li class="left">
                        <img src="images/custom/vuel/site_icons/add.png" alt="" />
                        <a href="profile.php?do=addlist&amp;userlist=buddy&amp;u=230">
                                Agregar a tu lista de amiguis
                        </a>
                </li>
               

               
               
        </ul>
</div>
 
                       
                        <br />
                        Inutil para la Patria
                        <br />
                       
                       
                       
                        <br />
                       
                       
                                <img src="customavatars/avatar230_39.gif" alt="Avatar de dball" />
                       
                       
                        </div>
                       
                       
                       
                       
                                <hr />
                                <dl class="userinfo_extra">
                                        <div><dt>Se pervirti? desde</dt> <dd>septiembre-2006</dd></div>
                                        <div><dt>vengo de</dt> <dd>morado, joar joar vengo de morado</dd></div>
                                       
                                        <div><dt>Coeficiente Intelectual</dt> <dd>2,215</dd></div>       
                                       
                                </dl>
                               
                                <dl class="userinfo_extra">
                                        <center><img class="inlineimg onlinestatus" src="images/custom/vuel/statusicon/user_offline.gif" alt="dball no ha iniciado sesi?n" border="0" />

 </center>
                                </dl>
                               
                                <div class="imlinks">
                                           
                                </div>
                               
                       
                </div>
                <div class="postbody">
               
                        <div class="postrow">
                               

                                       
                        [B]<div id="helpfulanswers_box_598184" style="text-align:right;">                [/B]
                                <br /><hr size="1" style="color:$stylevar[tborder_bgcolor]" />       
                               
                        </div>               
                                       
                                <div class="content">
                                        <div id="post_message_598184">
                                                <blockquote class="postcontent restore ">
               
<br />
<img src="http://4.bp.blogspot.com/_s3CEKuJPGog/St5j1xdMiBI/AAAAAAAAQzE/iI4Xk7gWfvE/s400/cerati_coca_cola_fest.jpg" border="0" alt="" /><br />
<br />
y ya tengo boletos! <img src="images/smilies/tortu.gif" border="0" alt="" title="Tortu" class="inlineimg" />
                                                </blockquote>
                                        </div>

                                       
                                </div>
                        </div>
                       
                        <div class="after_content">

I bolded the only thing about helpful answers I can find.

vivamexico55 06-21-2010 06:43 PM

Here's a sample page if you want to see the HTML directly

http://www.leforo.com/showthread.php...onciertos-2010

vivamexico55 06-21-2010 06:55 PM

Willing to paypal 10 bux for any help solving this =)

FractalizeR 06-22-2010 10:42 AM

Are you sure your style has all template template hooks in place? Check with developer. Plugin is in place, but it seems that template hook which is rendering voting buttons in place does not work.

vivamexico55 06-22-2010 03:43 PM

Quote:

Originally Posted by FractalizeR (Post 2057372)
Are you sure your style has all template template hooks in place? Check with developer. Plugin is in place, but it seems that template hook which is rendering voting buttons in place does not work.

I don't believe it is the style's problem because browsing with the default style doesn't work either:

http://www.leforo.com/forum.php?styleid=13

The thing is the plugin is there because you can see the ratings some old posts have, but you can't rate posts anymore. I think it's an issue with this plugin. Something happened from upgrade to 4.03 to 4.04.

Ted S 06-22-2010 08:32 PM

I have not had a chance to run 4.0.4 yet and will look into this on the weekend.

FractalizeR 06-23-2010 06:26 AM

I have it working on 4.0.4. Rating icons (pluses in my case) are in place.

vivamexico55 06-23-2010 07:33 PM

Quote:

Originally Posted by FractalizeR (Post 2057944)
I have it working on 4.0.4. Rating icons (pluses in my case) are in place.

That sucks (for me). Any idea why it's not showing on my site? I've double checked all the regular options. Should I uninstall and install again?

FractalizeR 06-24-2010 06:42 AM

Quote:

Originally Posted by vivamexico55 (Post 2057530)
I don't believe it is the style's problem because browsing with the default style doesn't work either:

http://www.leforo.com/forum.php?styleid=13

I don't see any default style on your forum. Default style is like here: http://www.vbulletin.com/forum/

In default style there is a style selection box at the bottom of the page. May be your Default style is also changed. But you can revert templates to check, I think.


Ted, did you have a chance to look at my patches? I've sent you private message, but no reply.

Ted S 06-24-2010 02:39 PM

Quote:

Originally Posted by vivamexico55 (Post 2058391)
That sucks (for me). Any idea why it's not showing on my site? I've double checked all the regular options. Should I uninstall and install again?

Let's go through the basics... Are you sure it's enabled in that forum (check again as an update could reset this variable), and that you have the auto placement in place.

sticky 06-24-2010 02:58 PM

Quote:

Originally Posted by sticky (Post 2056853)
Ted, would you be able to help with me with this please? I use helpful answers with the rep system but users are abusing the neg reps.

Feeling like my text is invisible ;)

Ken Sanders 06-24-2010 09:32 PM

Thanks for this mod! Goes great with the VBexperience.:D

Ted S 06-25-2010 03:13 AM

Quote:

Originally Posted by sticky (Post 2058859)
Feeling like my text is invisible ;)

I have not had a chance to look into this but am very well aware of your post.

vivamexico55 06-25-2010 06:20 AM

Quote:

Originally Posted by Ted S (Post 2058851)
Let's go through the basics... Are you sure it's enabled in that forum (check again as an update could reset this variable), and that you have the auto placement in place.

Yep, I've triple checked that & ran the bulk updater again and no dice, but here's an image anyway, thanks for replying:

http://img532.imageshack.us/img532/8693/rating1.gif


All times are GMT. The time now is 05:55 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.02378 seconds
  • Memory Usage 1,995KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_html_printable
  • (3)bbcode_php_printable
  • (17)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete