PDA

View Full Version : [How to] Add new/custom hook locations


Brad
09 Jun 2005, 00:50
This guide will teach you how to add your own hook locations to your scripts/default vBulletin source code. Note that I assume that you are working within the vBulletin.php files or you have included vBulletin's global.php.

Adding custom hook locations -

Method one:

See paul's thread here for the best method, if you are going to release your modification to the public this is the way you should go:

http://www.vbulletin.org/forum/showthread.php?t=83390

Method two:

All hooks listed in this drop down live in the .xml file located at /vbroot/includes/xml/hooks_vbulletin.xml

Find this bit of code at the very top of the file:



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------




Looks simple eh? Heres what these tags do

<hooks> - anything between this tag and </hooks> will be included in the drop down

<hooktype type="name"> - The name of your hook group, you should group all common hooks under a group so you can find them quickly. Make sure you don't use a name already used by a default hooktype.

<hook> - The name of your hook, this must be the same as the hook's name in the php code

Here is an example of my .xml file, I added three custom hooks under a new hooktype:



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



The php code:

Adding a hook location to the php code is easy, just make sure you use the correct hook name! Use this bit of php anywhere after your call to global.php to call your custom hook. Also note that you must use the $hook var!



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



Here is an example of my custom hooks working in vBulletin's index.php file:



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



As you can see I added them right under a current hook, which mostly defeats the purpose of making custom hooks. But for this post they serve their purpose ;)

Now all you need to do is browse to your admincp's add new plug-in page and test your new hook location! I use this just to make sure it is working correctly:



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



If that outputs its text above the vBulletin header then you are good to go!. :)

Floris
09 Jun 2005, 18:16
Great job, nice of you to share

Logikos
09 Jun 2005, 19:51
Very handy information

Creative Suite
10 Jun 2005, 00:29
it's ok with me , thank you

rjordan
10 Jun 2005, 03:43
If I might offer a suggestion... if were to add custom hooks in my code and upgrade my forums later, I would want to be able to find my hooks I entered easily so I can re-enter them if needed.

My suggestion:

Instead of doing this:


Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------


I would do this instead:


Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



Of course, there is absolutely nothing wrong the other way, but this way I can search for $customhook and know exactly what was added instead of searching through all of the $hook lines.

Only a thought I would share. Noone has to use it! :nervous:

deathemperor
21 Jun 2005, 12:16
Ok I think I forgot it but what are hooks used for ? (in the programming term, not end-users)

something like this line:



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------



what does it mean ?

Brad
21 Jun 2005, 12:23
Hooks are used to execute raw php code in the files.

Basicly that bit of code does this:

Checks if hooks are on in vboptions, checks if any hooks exist for that hook location.
If any hooks are found and enabled your custom php code is set to the $hook var
If there is php code set to $hook it is sent to eval for the php code to be executed, if not nothing is done and php moves on to the rest of the code in the file.

deathemperor
21 Jun 2005, 15:02
many thanks, I understand it now and is writing my hack.

Paul M
21 Jun 2005, 17:51
If you are adding custom hooks, you might want to read this as well.


http://www.vbulletin.org/forum/showthread.php?t=83390

Highlander65
07 Jul 2005, 17:26
If I might offer a suggestion... if were to add custom hooks in my code and upgrade my forums later, I would want to be able to find my hooks I entered easily so I can re-enter them if needed.

You could also just use "My_" (or any tag) in front of all your custom hook names. Then just search for your tag.

rjordan
07 Jul 2005, 22:28
Tomato (A), tomato (o). Same idea.

It would be nice to have something that could be considered "unofficially standard" so if anyone created an update script that searched for custom hooks, a universal pattern could be looked for. Granted that this would be completely up to the forum admin. Thus, the suggested $customhook rather than $hook for the variable name.

punchbowl
08 Jan 2007, 18:57
fantastic article - cheers

aim
27 Feb 2007, 16:34
...
The php code:

Adding a hook location to the php code is easy, just make sure you use the correct hook name! Use this bit of php anywhere after your call to global.php to call your custom hook. Also note that you must use the $hook var!



Code:
---------------
Code is only visible to licensed users, and only when logged into the forums.
---------------


...


I already implemented hooks as advised in this thread and they also work.

But today I noticed Warnings in the Webserver-Logfile concerning the Lines the Hooks where called:

PHP Warning: Call-time pass-by-reference has been deprecated - argument
passed by value; If you would like to pass it by reference, modify the
declaration of [runtime function name](). If you would like to enable
call-time pass-by-reference, you can set allow_call_time_pass_reference
to true in your INI file. However, future versions may not support this
any longer. in .../includes/init.php(403) :
eval()'d code on line 52, ....

Does this mean that future PHP-versions won't support the vBulletin-Hook-System?