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"> 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. :p |
There is actually an easier way:
Just add a new bit to the $_FORUMOPTIONS array and you are there. Why alter the database? |
Quote:
|
Using existing Bitfields is bad coding style ;)
This will cause problems sooner or later when Jelsoft starts to use further Bits. Furthermore, $_FORUMOPTIONS doesn't even exist in vBulletin 3.5 And as it is possible not to use forumoptions here, it should be encouraged to do so (eg. use custom fields). This is official Jelsoft stance regarding Bitfields. |
Thanks for clearing that up Andreas. I thought the way I was doing it was incorrect for a min.
|
Nope, it's absolutely correct - but you might want to point out that if you are adding a bunch of Yes/No type settings, it could be a good idea to introduce a custom bitfield :)
|
Quote:
|
Quote:
Quote:
Quote:
Quote:
Quote:
|
When i said incorrect, I meant not to your coding standards. ;)
|
Quote:
It is bad, as (in contrary to custom tables/colums/variables) using default vBulletin Bitfields for custom settings will cause Problems. Wort Case scenario: Your Hack uses the next available Bit in forumoptions for "Show Quick Stats for this Forum". Now the next vBulletin Version comes and redifines this Bit to "Prune this Forum every 24 hours". Now all users of this Hack have the Bit set ... Quote:
It adds a record to Table profilefield and alters table userfield to have a new MEDIUMTEXT columd fieldxx. This is just an easy-to-use frontend to alter the Database, so where is the difference? Keeping the Product Manager in mind, such DB alterations can be done easily, without the User having to know anything about running queries. |
Quote:
Quote:
Quote:
Quote:
Oh, there is an array called $vbulletin->bf_misc_forumoptions, but I cannot find out how is it populated. :( |
Quote:
The Hack was installed on the previous Version, which means the Bit is currently set. No matter if the Users reinstalls it on the new Version (without verified compatiablilty or not), the Bit is still set.[/QUOTE] Quote:
|
Quote:
Ahhh... Crap. Yes, you are right. Solution: Upon upgrade, let upgrade.php remove all the new bits from the data storage. |
That would mean Jelsoft taking responsiblity for custom Code - this won't happen :)
It's our responsibility to avoid such things. |
Quote:
Would you please change the thread's title and prefix it with [How-To]? That way all the how to threads stand out :) Thx. |
[sql]var smallint(3) not null default ''[/sql]shouldnt it be[sql]var smallint(3) unsigned not null default ''[/sql]?
|
Unsigned woul be better, since you will be able to store more options.
|
Quote:
Satan |
Quote:
Thanks Revan, fixed first post. |
How-To without braces tho :(
|
Quote:
|
Thank you so much for this tutorial. I found it very helpful! :)
Rebecca |
Hi everyone,
i am new to this but i like know how to add the following pages to my site. home --><--forum---><--Link Page--> <--Resources--><--etc--> How do I go about doing just that? Any help would be appreciated. |
Hi Everyone,
Can some help me please? |
I want to make make it so when users post in my graphic forum, it has a drop down below the title were it will say Experience: and they can choose from noobie or pro or basic and then it will add it to the title... (ie they put pro as thier graphic experience) so it would say something like this in the title- Check out this new design!!![PRO]
|
Dude, this is vBulletin 3.5, and the stuff in this tutorial could be done via XML...
HINT: <group name="misc"><group name="forumoptions">...</group></group> |
How do I allow end users to ADD A NEW FORUM? By end users, I mean, registered users who are neither administrators, nor moderators. I am trying to look for a complete example using vB_DataManager_Forum.
|
Could you please try to explain what you want to achieve. This sounds like it is getting very close to the borders of the license agreement.
|
Quote:
By the way, I figured it out: Code:
$forum = array( |
Yes that question was for you, but since you didn't answer what you want to achieve, i can also not anwer if it is a violation of the user agreement.
|
Quote:
Here are the details: I was trying to figure out how I can allow a registered user to add a new "Forum Topic" in my implementation of vBulletin. What I saw was one can add Forums through the Admin Control Panel and mark them either as Categories or Forums. My requirement was, under special situations, I would like registered users to add a Forum Topic, and the admin will then approve the forum to be active. After some study of the documentation and admin code, i was able to figure out how to achieve that using "Datamanager". The code I have posted earlier does what I wanted. Is this the correct approach? This is similar to adding a User using "Datamanager" as given in one of the examples. I was worried when you mentioned Quote:
|
As long as it will not allow members to create their own forums and make them look/access them like a standalone board, you will not be breaking the license agreement. Otherwise yes.
|
Thanks your reply...
Do you mean "standalone forum" as in a separate implementation of vBulletin software?... that isn't the intention. These will be part of one single implementation and each of the forum topics will have to be approved by the Admin. The Admin might choose to appoint the user who created the forum as its Moderator. I hope thats in line with the agreement. |
Just wanted to say thanks, Live Wire. Your tut was just what I needed and really helped cutting down on time I probably would have needed without it. Very helpful indeed!
|
FYI, if anyone is interested in a hack that makes it easy to add custom forum permissions (which match up with a set of custom usergroup permissions), check out my hack at:Custom Usergroup Forum Permissions
Livewire, this thread was very useful to me. I'm hoping to incorporate custom forum options into my hack as well, which will provide the ultimate in permissioning... custom forum permissions-> custom usergroup permissions -> custom forum permissions. |
Glad you found this turorial useful :)
|
I am having some trouble with this.
I have done everything to-the-letter, but the custom option (which is the [you] hack) is still being allowed across the board. Is this a function of the [you] hack, or is there something I am missing in these instructions? I seem to only be able to turn the [you] hack on/off by changing the php code here (from 1 to 0) (this is how I have the [you] hack configured on my site after following the instructions) PHP Code:
here is what I used in the forumadmin_edit_forum hook: PHP Code:
|
-bump-
....any help? :) |
This:
PHP Code:
PHP Code:
|
Why you want to use a input_row for a yes/no value?
|
All times are GMT. The time now is 02:40 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 | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|