The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Add options per forum
What this is This guide will teach you to use the hooks system to add options to your admincp/forum.php page. One finished, you will be able to add new options to your forum with just a few lines of code. Don't understand? Ever wanted to turn something on, but only in one of your forums? For example, lets say you want to execute code, but only in forum I.D. 2, 16, and 45. Lets begin! In this tutorial we will assume that you want a yes or no option; in order to enable/disable some code. In order to do that we first need to create a new row in the database. This will hold the information of which forums will be enabled/disabled. Always remember that '1' is considered as on, or enabled. And that '0' is considered off, or disabled. Please make sure this is all done on a test forum! We have to store the data! Run this SQL Query: [sql] ALTER TABLE forum ADD ( var smallint(3) unsigned not null default '' ) [/sql] Var = The name of the row in the database. This should be a name that will describe your system in one word. For example. In my vB Category Icons hack. This row is named 'forumhomeicon' Now that we have added our new row named 'var'. We now have to add the on/off option in the forums manager area of the admin control panel. Add the option in the ACP To add this new option in the ACP we need to create a new hook and add some code to that hook. The hook name should be: forumadmin_edit_form And the code should be: PHP Code:
That will actually add the yes/no row to all your forums in the admincp. So when you click on the save button, it will add your selection to the database. But how does it know which row to add it to? Glad you asked. You have to create one more hook! The hook name should be: forumdata_start And the code to add there is the following PHP Code:
I want to add more then just one option! Then you will need to repeat this tutorial for each option you would like to have. Now that you have saved both hooks. You can now use the following code in any of your hooks. PHP Code:
HTML Code:
<if condition="$foruminfo['var'] == 1"> <!-- Your Code Here --> </if> If you have 2 or more options being added to the forums, you can place all the code in each hook. For example: Hookname: forumadmin_edit_form Code: PHP Code:
Code: PHP Code:
Custom Fields The following fields can also be used. PHP Code:
PHP Code:
PHP Code:
This tutorial was created for a member who needed to know how to do this exact thing, so I figured I would teach everyone. |
#42
|
|||
|
|||
Opps, fixed post #39.
|
#43
|
||||
|
||||
hello,
i used: PHP Code:
PHP Code:
PHP Code:
PHP Code:
PHP Code:
thanks, Ross |
#44
|
|||
|
|||
Nice tutorial, but it does not provide for using bitfields xml and/or multiple settings within one db field.
I know how to do use bitfield xml with forum settings, if anyone wants a tutorial - I can post one. |
#45
|
|||
|
|||
I would acually like to read that myself. Would you post a tutorial on how one can use bitfields per forum setting? Thanks!
|
#46
|
|||
|
|||
Thanks I've done it
|
#47
|
||||
|
||||
Ive followed your code down to the pixel and whenever i try to post using a custom foruminfo in the hook newpost_complete, i get a 'you have already posted this message in the last 5 minutes' thing.
|
#48
|
|||
|
|||
I have a problem with this. I can change the option but it doesn't actually store the data.
Where does the SQL query come in each time you change the option? |
#49
|
|||
|
|||
This runs on vbb 3.6x only? I've tried on vbb 3.7 but didnt work!
|
#50
|
|||
|
|||
Works fine on 3.7 for me
|
#51
|
||||
|
||||
figgerd' it out.
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|