vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   New Posting Features - VB AnyMedia Player / Media Sites (youtube, google and many more) (https://vborg.vbsupport.ru/showthread.php?t=150491)

nix 09-15-2007 09:52 PM

Quote:

Originally Posted by Emaginsoft (Post 1339522)
I added:

Code:

so$media[id].addVariable('autostart',true);
to the template and it shows up in the html -> source on the page. Just acts like the player is not getting the var.

My next step is to hack the player flash source to always auto play and I dislike flash so I'll be extremely grateful. :)

What you have is correct. Go here http://www.jeroenwijering.com/?item=JW_MP3_Player and download the latest mp3player and it will work. Thought I updated it.

nix 09-15-2007 10:00 PM

if you want it to work with anymedia settings use this.

Code:

so$media[id].addVariable("file","$media[link]");
                        so$media[id].addVariable("repeat","$media[loop]");
                        so$media[id].addVariable("showdigits","true");
                        so$media[id].addVariable("showdownload","$media[download]");
                        so$media[id].addVariable("autostart","$media[autoplay]");


ammoskumar 09-15-2007 10:57 PM

NIX in beta 3 i can not embed any video from any site what am i doing rong.... if you can installtion instruction that'll be appreciated

nix 09-15-2007 11:06 PM

I would have to look at your forum to see.

Emaginsoft 09-16-2007 01:36 AM

Thanks. I had previously downloaded that player but did not want to upload it cause the filesizes were extremely different. I'll give this a shot and let you know how it goes.

Thanks.

tminus 09-16-2007 04:01 AM

Finally .flv is working on my site! Thanks Nix!

I would love for local videos to appear like supported site videos with the video thumbnail versus the Anymedia icon, and the video title versus "click here to watch video." I am sure you are working on this for a future release, so in the meantime, can you suggest a way I can make it work? Like maybe adding an html file with the video embedded and specific code for Anymedia, then using that as the link versus the actual file link. Any help you can give would be appreciated.

Thanks

Quote:

Originally Posted by nix
The problem with that is that it would change it for all users. But if people want this I can.

Why not just add it in user options and let the user select their Anymedia style preference? I think allowing admin to decide upon install or allowing users to select their style preference is a good idea. Even though I prefer Highslide, I can see why others might prefer the original.

nix 09-16-2007 05:24 AM

The reason why it can't really be a user setting is that it goest in the posted phrased and isn't converted again. So it would it would what ever the style is for the person who posted.

Not sure about the thumb for the local files. They don't have thumb nails by default. You would have to create one.

bing11 09-16-2007 10:26 AM

nice code but can someone teach me how can use vbblog

nix 09-16-2007 10:38 AM

You want to use this in vblog? I haven't tried.

Freesteyelz 09-16-2007 11:38 AM

Nice. The DB error upon post preview and Quick Reply seems to have been fixed. Thank you. :)

bing11 09-16-2007 01:14 PM

Quote:

Originally Posted by nix (Post 1340045)
You want to use this in vblog? I haven't tried.

yes I try . But not work . Can help?

Emaginsoft 09-16-2007 06:24 PM

the mp3's refused to play so I had to add:

Code:

so$media[id].addVariable("type","mp3");
now they play just fine with autostart. Hopefully this is helpful to you. :D

eurofunny 09-16-2007 07:39 PM

Quote:

Originally Posted by Emaginsoft (Post 1340310)
the mp3's refused to play so I had to add:

Code:

so$media[id].addVariable("type","mp3");
now they play just fine with autostart. Hopefully this is helpful to you. :D

Hi, can you attach the anymedia Template with your modifications please??

Emaginsoft 09-16-2007 07:44 PM

I made all the changes to the anymediaold template. Note that I uploaded the full mp3 player instead of using the modified version. here is my full modified version of the template:

Code:

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$media[layout]">
<tr>
        <td class="tcat"<if condition="$media['type'] == 'p2p'"> colspan="2"</if>>
        <span style="float:$stylevar[right]"><a href="#" onclick="return toggle_collapse('media_$media[id]')"><img id="collapseimg_media_$media[id]" src="$stylevar[imgdir_button]/collapse_tcat.gif" border="0" /></a></span>
        <a href="#" onclick="return toggle_collapse('media_$media[id]')"><if condition="$vboptions['anymediatitle']"> $vboptions[anymediatitle]<else />$vbphrase[anymedia_player]</if></a></td>
</tr>
<tbody id="collapseobj_media_$media[id]"<if condition="$vboptions['anymediacollapse']"> style="display:none;"</if>>
<if condition="$media['type'] != 'p2p'">
<tr>
        <td class="alt1" align="center">
                <if condition="$media['type'] == 'adobe_flash' AND !in_array($media['extension'], array('mp3','mtv','flv','youporn','godtube'))">
                        <div id="vid-$media[id]">
                                <script type="text/javascript">
                                        // <![CDATA[               
                                        var so$media[id] = new SWFObject("$media[url]", "anymediavidsites", "$media[width]", "$media[height]", "7", "#FFFFFF");
                                        <if condition="$media['url2']">so$media[id].addVariable("$media[url2]");</if>
                                        so$media[id].addParam("wmode", "transparent");
                                        so$media[id].write('vid-$media[id]');
                                        // ]]>
                                </script>
                        </div>
                </if>
                <if condition="$media['extension'] == 'mp3'">
                        <div id="vid-$media[id]">
                                <script type="text/javascript">
                                        var so$media[id] = new SWFObject("players/mp3player.swf", "line", "420", "20", "7");
                                        so$media[id].addVariable("file","$media[link]");
                        so$media[id].addVariable("width","420");
                        so$media[id].addVariable("repeat","$media[loop]");
                        so$media[id].addVariable("type","mp3");
                        so$media[id].addVariable("showdigits","true");
                        so$media[id].addVariable("showdownload","$media[download]");
                        so$media[id].addVariable("autostart","$media[autoplay]");
                                       
                                        so$media[id].write('vid-$media[id]');
                                </script>
                        </div>
                </if>
                <if condition="$media['attachment'] == 'flv'">
                <!-- Adobe Flash -->
                <div id="$media[id]">
                        <script type="text/javascript">
                                // <![CDATA[               
                                var so$media[id] = new SWFObject("$media[url]", "flvattach", "$media[width]", "$media[height]", "7", "#FFFFFF");
                                so$media[id].addVariable("file","$media[url3]");
                                so$media[id].addParam("wmode", "transparent");
                                so$media[id].addVariable("image","anymedia/anyMediaplay.gif");
                                so$media[id].addVariable('type','flv');
                                so$media[id].write('$media[id]');
                                // ]]>
                        </script></div>
                </if>
                <if condition="$media['extension'] == 'flv' AND $media['attachment'] != 'flv'">
                        <div id="vid-$media[id]">
                                <script type="text/javascript">
                                        // <![CDATA[               
                                        var so$media[id] = new SWFObject("$media[url]", "anymediaflash", "$media[width]", "$media[height]", "7", "#FFFFFF");
                                        so$media[id].addVariable("file","$media[link]");
                                        so$media[id].addParam("wmode", "transparent");
                                        so$media[id].addVariable("image","anymedia/anyMediaplay.gif");
                                        so$media[id].addVariable('type','flv');
                                        so$media[id].write('vid-$media[id]');
                                        // ]]>
                                </script>
                        </div>
                </if>
                <if condition="$media['extension'] == 'mtv'">
                        <div id="vid-$media[id]">
                                <script type="text/javascript">
                                        // <![CDATA[               
                                        var so$media[id] = new SWFObject("$media[url]", "anymediavidsitesmtv", "$media[width]", "$media[height]", "7", "#FFFFFF");
                                        so$media[id].addVariable("CONFIG_URL","$media[url2]");
                                        so$media[id].addParam("AllowScriptAccess", "never");
                                        so$media[id].addParam("base", ".");
                                        so$media[id].addParam("wmode", "transparent");
                                        so$media[id].write('vid-$media[id]');
                                        // ]]>
                                </script>
                        </div>
                </if>
                <if condition="$media['extension'] == 'godtube'">
                        <div id="vid-$media[id]">
                                <script type="text/javascript">
                                        // <![CDATA[               
                                        var so$media[id] = new SWFObject("$media[url]", "anymediavidsitesgodtube", "$media[width]", "$media[height]", "7", "#FFFFFF");
                                        so$media[id].addVariable("type","$media[url2]");
                                        so$media[id].addParam("wmode", "transparent");
                                        so$media[id].write('vid-$media[id]');
                                        // ]]>
                                </script>
                        </div>
                </if>
                <if condition="$media['type'] == 'divx_video'">
                <!-- Divix -->
                <object codebase="http://download.divx.com/webplayer/stage6/windows/DivXBrowserPlugin.cab" height="$media[height]" width="$media[width]" classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616"><param name="autoplay" value="false"><param name="src" value="$media[url]" /><param name="custommode" value="Stage6" /><param name="showpostplaybackad" value="false" /><embed type="video/divx" src="$media[url]" pluginspage="http://go.divx.com/plugin/download/" showpostplaybackad="false" custommode="Stage6" autoplay="false" height="$media[height]" width="$media[width]" /></object>
                </if>
        <if condition="$media['type'] == 'quick_time'">
        <!-- Quick Time -->
                <script type="text/javascript" src="clientscript/anymedia.js"></script>
                <div id="anymedia_container_$media[id]"></div>
                <script type="text/javascript">anymedia_quicktime('$media[id]', '$media[url]', '$media[mime]', '$media[width]', '$media[height]', '$media[autoplay]', '$media[loop]');</script>
        </if>
        <if condition="$media['type'] == 'real_media'">
        <!-- Real Media -->
                <script type="text/javascript" src="clientscript/anymedia.js"></script>
                <div id="anymedia_container_$media[id]"></div>
                <script type="text/javascript">anymedia_realmedia('$media[id]', '$media[url]', '$media[mime]', '$media[width]', '$media[height]', '$media[autoplay]', '$media[loop]');</script>
        </if>
        <if condition="$media['type'] == 'windows_media'">
        <!-- Windows Media -->
                <script type="text/javascript" src="clientscript/anymedia.js"></script>
                <div id="anymedia_container_$media[id]"></div>
                <script type="text/javascript">anymedia_windowsmedia('$media[id]', '$media[url]', '$media[mime]', '$media[width]', '$media[height]', '$media[autoplay]', '$media[loop]');</script>
        </if>
        <if condition="$media['type'] == 'adobe_pdf'">
        <!-- Adobe PDF -->
                <script type="text/javascript" src="clientscript/anymedia.js"></script>
                <div id="anymedia_container_$media[id]"></div>
                <script type="text/javascript">anymedia_adobepdf('$media[id]', '$media[url]', '$media[mime]', '$media[width]', '$media[height]', '$media[autoplay]');</script>
        </if>
        <if condition="$media['type'] == 'image'">
        <!-- Image -->
                <script type="text/javascript" src="clientscript/anymedia.js"></script>
                <img src="$media[url]" id="anymedia_image_$media[id]" border="0" onload="if(this.width>$media[width]) {this.resized=true; this.width='$media[width]'; this.alt='$vbphrase[anymedia_resized]';}" onmouseover="if(this.resized) this.style.cursor='pointer';" onclick="if(!this.resized) {return false;} else {window.open('$media[url]');}" onmousewheel="return imgzoom(this);" />
        </if>
        <if condition="$media['type'] == 'pplive'">
        <!-- PPLive -->
                <script type="text/javascript" src="clientscript/anymedia.js"></script>
                <div id="anymedia_container_$media[id]"></div>
                <script type="text/javascript">anymedia_pplive('$media[id]', '$media[url]', '$media[mime]', '$media[width]', '$media[height]', '$media[autoplay]');</script>
        </if>
        <if condition="$media['type'] == 'torrent_error'">
        <!-- Torrent Error -->
                $vbphrase[anymedia_torrent_error]
        </if>
        <if condition="$media['type'] == 'unknown'">
        <!-- Wrong Type -->
                $vbphrase[anymedia_wrong_type]
        </if>
        <if condition="$media['type'] == 'error'">
        <!-- Error -->
                $vbphrase[anymedia_error]
        </if>
        <if condition="$media['type'] == 'vidsiteoff'">
        <!-- Error -->
                $vbphrase[anymedia_vidsiteoff]
        </if>
        </td>
</tr>
<else />
<if condition="$media['extension'] == 'torrent'">
<!-- Torrent -->
<if condition="$media['extra']['name']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_name]: </td>
        <td class="alt1">{$media[extra][name]}<if condition="$media['extra']['length']"> ( {$media[extra][length]} )</if></td>
</tr>
</if>
<if condition="$media['extra']['publisher']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_publisher]: </td>
        <td class="alt1"><if condition="$media['extra']['publisher_url']"><a href="{$media[extra][publisher_url]}" target="_blank" title="$vbphrase[anymedia_torrent_publisher_url]">{$media[extra][publisher]}</a><else />{$media[extra][publisher]}</if></td>
</tr>
</if>
<if condition="$media['extra']['created_by']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_created_by]: </td>
        <td class="alt1">{$media[extra][created_by]}</td>
</tr>
</if>
<if condition="$media['extra']['creation_date']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_creation_date]: </td>
        <td class="alt1">{$media[extra][creation_date]}</td>
</tr>
</if>
<if condition="$media['extra']['encoding']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_encoding]: </td>
        <td class="alt1">{$media[extra][encoding]}<if condition="$media['extra']['codepage']"> ( $vbphrase[anymedia_torrent_codepage]: {$media[extra][codepage]} )</if></td>
</tr>
</if>
<if condition="$media['extra']['piece_length']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_piece_length]: </td>
        <td class="alt1">{$media[extra][piece_length]}</td>
</tr>
</if>
<if condition="$media['extra']['announce']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_announce]: </td>
        <td class="alt1">{$media[extra][announce]}</td>
</tr>
</if>
<if condition="$media['extra']['nodes']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_nodes]: </td>
        <td class="alt1">{$media[extra][nodes]}</td>
</tr>
</if>
<if condition="$media['extra']['files']">
<tr>
        <td class="alt2" width="20%">$vbphrase[anymedia_torrent_files]: </td>
        <td class="alt1">{$media[extra][files]}</td>
</tr>
</if>
</if>
<if condition="$media['extension'] == 'foxy' || $media['extension'] == 'emule'">
<!-- Foxy -->
{$media[extra][content]}
<tr class="alt2">
        <td align="left" width="80%">
        <script type="text/javascript" src="clientscript/anymedia.js"></script>
        <span style="float: right;"><input type="button" value="$vbphrase[anymedia_download_checked]" onClick="anymedia_download('$media[id]', 0, 1)" class="button"> <input type="button" value="$vbphrase[anymedia_copy_checked]" onClick="anymedia_copy('$media[id]')" class="button"><div id="copy_anymedia_$media[id]" style="position:absolute;height:0px;width:0px;overflow:hidden;"></div></span> <input type="checkbox" id="checkall_anymedia_$media[id]" onClick="anymedia_checkall('$media[id]', this.checked)" checked="checked" /> <label for="checkall_anymedia_$media[id]">$vbphrase[anymedia_check_all]</label>
        </td>
        <td align="center" width="20%" class="alt1">
        $vbphrase[anymedia_total_size]<span id="size_anymedia_$media[id]">{$media[extra][size]}</span>
        </td>
</tr>
</if>
</if>
<if condition="$media['download']">
<tr>
        <td class="tfoot" align="center"<if condition="$media['type'] == 'p2p'"> colspan="2"</if>><a href="$media[link]" target="_blank"><if condition="$media['title']">$media[title]<else />$vbphrase[anymedia_download]</if></a></td>
</tr>
<else />
<tr>
        <td class="tfoot" align="center"<if condition="$media['type'] == 'p2p'"> colspan="2"</if>><strong>$media[title]</strong></td>
</tr>
</if>
</tbody>
</table>


eurofunny 09-16-2007 07:58 PM

thx now it works :D

ammoskumar 09-16-2007 09:20 PM

Quote:

Originally Posted by nix (Post 1339778)
I would have to look at your forum to see.

Ya can you please check.....

jamestanker 09-16-2007 10:20 PM

I am being told to upgrade my flash player and it just puts the M logo in the spot

help!

RockStrongo 09-16-2007 11:25 PM

Nice Mod! Thanks!

Any chance you'll ever get NFL.com videos to work? ;)

nix 09-16-2007 11:34 PM

I'll take a look at them. Didn't know they had videos.

I have this working in the vblogs. I'll release it sometime this week.

RockStrongo 09-17-2007 12:07 AM

Here's a sample of their video link they provide if that helps at all. :up:

http://www.nfl.com/videos?videoId=09000d5d8026755c

Once again....GREAT MOD!

tminus 09-17-2007 04:19 AM

Quote:

Originally Posted by nix (Post 1339925)
Not sure about the thumb for the local files. They don't have thumb nails by default. You would have to create one.

That is fine. I wouldn't mind because we will only have a limited amount of local videos anyways and they would be content posts, not video sharing. So if you could give me some html so Anymedia will grab the title and thumbnail it would be great. Either way I will take a look at it. Thanks!

GrendelKhan{TSU 09-17-2007 05:44 AM

Quote:

Originally Posted by nix (Post 1338586)
Redownload the file and upload files and import it again. I fixed that right away. That krumo function i use for testing.

ok. that worked thanx!! will continue testing to make sure no other issue.
Great job so far.

voted for you for mod of the month. :)

SUGGESTION: make the player title (ie: Anymedia Player v3.02 or whatever we name it) appear in the actual title bar area of the player. Also same for video title -- not just next to the thumbnail.)

QUESTION: can one turn it OFF for inline but ON for attachment use? (ie: if I want to use anymedia for when someone uploads a file...but not for linking in youtube etc).

nix 09-17-2007 06:10 AM

Yea you can turn video sites off or turn all video sites off. But other media types will still work.

GrendelKhan{TSU 09-17-2007 07:03 AM

Quote:

Originally Posted by nix (Post 1340663)
Yea you can turn video sites off or turn all video sites off. But other media types will still work.

1. ah I get it cool. so I can turn off individual sites and it'll still work for the others.
awesome!! (the point is some sites I think I want AME to pick up. Though I want most with AnyMedia and for attachments.)

(edit:
* ok tried disabling individual ones -- didn't work. AnyMedia still picks em up.
* AND then tried disable globally (Enable Video Sites Globally) and still AnyMedia still picks em up. ie. disabling doesn't seem to actually do anything. At least its working...but now toooo well. lol)

2. Different question:
* in the ADminCP:
Quote:

Supported extensions for Image File
This setting allows you to enable and disable various extensions for Image.
I have this set to YES. Doesn't this mean "regular" image attachments will use AnyMedia Player? (eg: upload an image and anymedia player detects and kicks in? like with mp3 files?)

If so, it doesn't seem to do anything. attached images behave as normal (just open in regular new window).

nix 09-17-2007 07:08 AM

Images work as attachments in the version I have on my test server. When I release this I try just to put a few added features back in to see how it goes. I planned on have more updates out but this has been a bad week for me. My dad is dying and I'm going to be looking for a new job in 2 months after 13 years of the Air Force.

GrendelKhan{TSU 09-17-2007 07:49 AM

Quote:

Originally Posted by nix (Post 1340679)
Images work as attachments in the version I have on my test server. When I release this I try just to put a few added features back in to see how it goes. I planned on have more updates out but this has been a bad week for me. My dad is dying and I'm going to be looking for a new job in 2 months after 13 years of the Air Force.

I'm sorry to hear to that nix. I hope he gets better and it works out for you.

so just put mine in the list for when you get around to it:
1. disable not working right
2. attachments not working for images


Life and family first... so take your time and do what you gotta do. Its amazing work you do here ..and for free!! We'll be here annoying you with requests and bugs when you get back. heh. hang in there and thanks again.

maf1973 09-17-2007 01:52 PM

Quote:

Originally Posted by cyclone-uk (Post 1336914)
Still not working for me, i get a slightly different error now - Error: unsupported media type.2

I still get the same error, any ideas how to fix this?
I upgradet to Beta3 today.

hnjco 09-17-2007 11:40 PM

I'm missing some thing or there is something wrong.

in Vbull options there is option for AnyMedia Player Title on header but its not working for me.

dacho 09-18-2007 06:14 AM

Several problems :
  1. There is a problem with left right in the presentation In several languages of the direction is from right to left ( Hebrew for example )
  2. It's impossible to define a size of different display
  3. The link is representable in spite of that defined that will not demonstrate

Several site to add :
  1. Flix.co.il
  2. Sport5.co.il

parabat 09-18-2007 09:35 AM

Quote:

Originally Posted by nix (Post 1340679)
My dad is dying and I'm going to be looking for a new job in 2 months after 13 years of the Air Force.

Nix I'm sorry to hear this :(
Hope you get your next job sorted out.
Thanx for all the hard work and an awesome mod with awesome support form the coder. Many others should learn from you.
Thanx again.

-PB

USAMustangs.com 09-18-2007 10:04 AM

Quote:

Originally Posted by nix (Post 1340679)
My dad is dying and I'm going to be looking for a new job in 2 months after 13 years of the Air Force.

Sorry to hear that.

Best wishes!

El Burro 09-18-2007 04:12 PM

Sorry to hear about your Dad :(

Hope you get a new job real soon. :)

El Burro

dacho 09-18-2007 05:22 PM

Quote:

Originally Posted by nix (Post 1340679)
My dad is dying and I'm going to be looking for a new job in 2 months after 13 years of the Air Force.

Best wishes!

xandizitxu 09-18-2007 06:47 PM

Just a question, when I upload a Image it would open like utube videos? and Flash opens in a new window.

EDIT:
Sorry for disturbing you.
:\ I hope your father gets better.

mach-o 09-18-2007 07:18 PM

Hey if I install this will videos work in my profile pages? anyone know?

SBlueman 09-19-2007 03:44 AM

I can't seem to get video to work from break or youporn....any suggestions?

fsbmax 09-19-2007 06:23 PM

umm nothing is showing when i did a test on my forums???

this is the code i attached...

Code:

[media="400, 300"]http://www.fsbmax.com/videos/overclocking.flv[/media]
Here is the link to the test page...

http://www.fsbmax.com/forum/showthread.php?t=30

Anyone know whats up?

jGas 09-20-2007 08:06 AM

this modification is great!!! thanks a lot really! :D

it works like a charm! ;)


i have only a question: my board is italian, how do i edit "Click here to listen" ?

i can't find it inside langueges search!

thanks!

jGas 09-20-2007 08:16 AM

Quote:

Originally Posted by nix (Post 1337159)
Right now its just in the template. So just edit the text to what you want.

i've found, thanks!

COOLover 09-20-2007 12:24 PM

Hello together,

first your Addon is realy good.
But i use your Addon on a German Community, but it's too few german Video hosts. How, can i Insert as sample Clipfish.de or Sevenload.de

thanks in forwards.


All times are GMT. The time now is 02:15 AM.

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.02728 seconds
  • Memory Usage 1,913KB
  • 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
  • (6)bbcode_code_printable
  • (15)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)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