vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3 Articles (https://vborg.vbsupport.ru/forumdisplay.php?f=187)
-   -   Add Multiple Options Per User (via Bitfields) (https://vborg.vbsupport.ru/showthread.php?t=116155)

akanevsky 05-19-2006 10:00 PM

Add Multiple Options Per User (via Bitfields)
 
Create Multiple Options Per User (via Bitfields)

This How-To should serve as a reference to coders, who have a basic knowledge of PHP and who want to make their own mods.
Help on writing hacks will NOT be provided, and any such posts will be ignored.

Whereever it says mybitoptionsfield, you'll need to replace that with the actual fieldname that you are going to use.
  • The following step is to create bitfield xml for vBulletin.
    Create a file named bitfield_myproductid.xml, where myproductid is the id of your product, with the following content, in ./includes/xml/:
    Note: In the <bitfield> tag, name="" must contain the desired title of the option. You are going to use that title to access the options later on. The title must contain ALPHANUMBERIC characters only, and it should not contain spaces. The digit in between the opening and closing <bitfield> tags is the bit value. Each consecutive bit value must be 2 x (Previous Value). Sample valid sequence: 1, 2, 4, 8, 16, 32.
    PHP Code:

    <?xml version="1.0" encoding="ISO-8859-1"?>

    <bitfields product="myproductid">
        <bitfielddefs>
            <group name="misc">
                <group name="mybitoptionsfield">
                    <bitfield name="option1">1</bitfield>
                    <bitfield name="option2">2</bitfield>
                </group>
            </group>
        </bitfielddefs>
    </bitfields>

  • The following step is to define installation process of the bitfield in your product.
    Create a new product and add the following codes as install and uninstall, respectively:

    PHP Code:

    $db->hide_errors();

    $db->query_write("ALTER TABLE `" TABLE_PREFIX "user` ADD `mybitoptionsfield` INT( 10 ) UNSIGNED NOT NULL DEFAULT '0' AFTER `options`");

    require_once(
    DIR '/includes/class_bitfield_builder.php'); 
    $myobj =& vB_Bitfield_Builder::init();
    $myobj->save($db);
    build_forum_permissions(); 

    $db->show_errors(); 

    PHP Code:

    $db->hide_errors();

    $db->query_write("ALTER TABLE `" TABLE_PREFIX "user` DROP `mybitoptionsfield`");

    require_once(
    DIR '/includes/class_bitfield_builder.php'); 
    $myobj =& vB_Bitfield_Builder::init();
    $myobj->save($db);
    build_forum_permissions(); 

    $db->show_errors(); 

  • The following step is to have the new options fetched together with userinfo.
    Create a plugin @ fetch_userinfo with the following code:

    PHP Code:

    if (isset($vbulletin->bf_misc['mybitoptionsfield']))
    {
        foreach (
    $vbulletin->bf_misc['mybitoptionsfield'] AS $optionname => $optionval)
        {
            
    $user["$optionname"] = ($user['mybitoptionsfield'] & $optionval 0);
        }


  • The following step is to add new options to UserCP Option Page on Template Level.
    In template modifyoptions, add the following code whereever you want the options to appear:

    HTML Code:

    <fieldset class="fieldset">
            <legend><label for="cb_option1">OPTION1_HEADING1</label></legend>
            <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
            <tr>
                    <td>
                            OPTION1_DESCRIPTION1
                    </td>
            </tr>
            <tr>
                    <td><label for="cb_option1"><input type="checkbox" name="mybitoptionsfield[option1]" value="1" id="cb_option1" $checked[option1] />OPTION1_HEADING1</label><input type="hidden" name="set_options[option1]" value="1" /></td>
            </tr>
            </table>
    </fieldset>

    <fieldset class="fieldset">
            <legend><label for="cb_option2">OPTION2_HEADING2</label></legend>
            <table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
            <tr>
                    <td>
                            OPTION2_DESCRIPTION2
                    </td>
            </tr>
            <tr>
                    <td><label for="cb_option2"><input type="checkbox" name="mybitoptionsfield[option2]" value="1" id="cb_option2" $checked[option2] />OPTION2_HEADING2</label><input type="hidden" name="set_options[option2]" value="2" /></td>
            </tr>
            </table>
    </fieldset>

  • The following step is to add new options to UserCP Option Page on Code Level.
    Create a plugin @ profile_updateoptions with the following code:

    PHP Code:

    if (isset($vbulletin->bf_misc['mybitoptionsfield']))
    {
        
    $vbulletin->input->clean_gpc('p''mybitoptionsfield'TYPE_ARRAY_BOOL);

        foreach (
    $vbulletin->bf_misc['mybitoptionsfield'] AS $key => $val)
        {
            if (isset(
    $vbulletin->GPC['mybitoptionsfield']["$key"]) OR isset($vbulletin->GPC['set_options']["$key"]))
            {
                
    $userdata->set_bitfield('mybitoptionsfield'$key$vbulletin->GPC['mybitoptionsfield']["$key"]);
            }
        }


  • The following step is to add new options to AdminCP User Manager.
    Create a plugin @ useradmin_edit_column1 with the following code:

    PHP Code:

    if (isset($vbulletin->bf_misc['mybitoptionsfield']))
    {
        
    print_table_break(''$INNERTABLEWIDTH);

        
    $mybitoptionsfield convert_bits_to_array($user['mybitoptionsfield'], $vbulletin->bf_misc['mybitoptionsfield']);
        
    $user array_merge($user$mybitoptionsfield);

        
    print_table_header('MYHEADING');
        
    print_yes_no_row('MYOPTION1''mybitoptionsfield[option1]'$user['option1']);
        
    print_yes_no_row('MYOPTION2''mybitoptionsfield[option2]'$user['option2']);


  • The following step is to have the new options saved when the button is clicked.
    Create a plugin @ useradmin_update_save with the following code:

    PHP Code:

    if (isset($vbulletin->bf_misc['mybitoptionsfield']))
    {
        
    $vbulletin->input->clean_gpc('p''mybitoptionsfield'TYPE_ARRAY_BOOL);
        
        foreach (
    $vbulletin->GPC['mybitoptionsfield'] AS $key => $val)
        {
            if (isset(
    $vbulletin->GPC['mybitoptionsfield']["$key"]))
            {
                
    $userdata->set_bitfield('mybitoptionsfield'$key$val);
            }
        }


  • The following step is to have the new bitfield added to the vBulletin_User_Dm.
    Create a plugin @ userdata_start with the following code:

    PHP Code:

    if (isset($this->registry->bf_misc['mybitoptionsfield']))
    {
        
    $this->bitfields["mybitoptionsfield"] =& $this->registry->bf_misc['mybitoptionsfield'];



Once done, rebuild your btifields.
Now, you should be able to access the new options simply by using $userinfo['mybitoptiontitle'].

>> EOD

-=Sniper=- 05-20-2006 12:14 PM

bookmarked :) thanks dude

Logikos 05-20-2006 01:40 PM

You saved the day! Thank you very much Anthony! :)

rogersnm 05-28-2006 03:31 PM

i just get

Invalid File Specified

when i try to import the xml product file containing:
PHP Code:

<?xml version="1.0" encoding="ISO-8859-1"?>

<bitfields product="myproductid">
    <bitfielddefs>
        <group name="misc">
            <group name="mybitoptionsfield">
                <bitfield name="option1">1</bitfield>
                <bitfield name="option2">2</bitfield>
            </group>
        </group>
    </bitfielddefs>
</bitfields>


akanevsky 05-28-2006 03:34 PM

Don't import that file, place it under ./includes/xml/ of your forum (filename should be: bitfield_myproductid.xml).

rogersnm 05-28-2006 03:45 PM

ahh thanks for the quick response

btw myproductid is myproductid

lol

akanevsky 05-28-2006 03:54 PM

You should use a unique string as your product id, not keep the default one. Two product with the same product id cannot co-exist.

rogersnm 05-28-2006 04:04 PM

yeah i am just testing i will change afterwards.

do you know how to get 2 radio buttons yes or no?

akanevsky 05-28-2006 04:06 PM

Please refer to the following text from the first post:

Quote:

Help on writing hacks will NOT be provided, and any such posts will be ignored.

rogersnm 05-28-2006 04:07 PM

so how am i supposed to learn :(

akanevsky 05-28-2006 04:13 PM

You could start by referring to the following thread:
https://vborg.vbsupport.ru/showthread.php?t=99570

Also, if you have specified questions, post them in "Modifications Questions" forum. :)

rogersnm 05-28-2006 04:14 PM

already have. lol :)....

Cloud-Warrior 02-26-2008 11:07 AM

A great tutorial!

I had two issues, that others might also run into:

* you might have to execute the querys from step 2 manually (as i followed all the steps here to create the product, and didn't acually "install" it via the import product button)

* If you want to create a plugin that changes the template (instead of manually inserting the code into the template modifyoptionslike in step 4) you have to do some extra things - explained in this thread

SorentoUltimate 01-26-2010 03:06 PM

Very Good Article

Neo_obs 01-29-2010 01:05 AM

I have a side question, I know it says no help will be provided. But I want to have an option like "Enable Override" and then my options would override the usergroup options. For instance, if enable override is on and voting is off, the user can't vote whether they have usergroup permissions or not. If the voting is on then they can vote whether they have usergroup permissions or not. This way I can allow certain users to vote even if their usergroup doesn't allow it, or deny them access to vote even if their usergroup allows it.

Broseph 02-04-2013 09:29 PM

Fantastic article. Any chance of doing something similar with vb4.x? Has it even changed much?


All times are GMT. The time now is 06:22 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02403 seconds
  • Memory Usage 1,801KB
  • 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
  • (1)bbcode_html_printable
  • (9)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (16)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete