vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   vb_datamanager_forum bitfield options (https://vborg.vbsupport.ru/showthread.php?t=187773)

scoutz 08-10-2008 08:10 PM

vb_datamanager_forum bitfield options
 
I'm trying to set the bitfield options for a script im writing that creates new forums from non-vb pages.

PHP Code:

$userdata =& datamanager_init('Forum'$vbulletinERRTYPE_SILENT); 

$userdata->set('title'$serie['name']); 
$userdata->set('title_clean'$serie['name']); 
$userdata->set('description''Discuss the '.$serie['name']); 
$userdata->set('description_clean''Discuss the '.$serie['name']; 
$userdata->set('parentid'$forumnumber);

//this does not work
$vars = array('active' => 1);
$userdata->set('options'$vars); 

$userdata->save();
unset(
$userdata); 

I'm trying to set the options data which I want to be set at 97991 (Act as Forum=1, Forum is Active =1, Forum is Open =1,Index New Posts=1 etc.).

I've tried several values for the options field, nothing worked.

As described in the class_dm_forum.php datamanager class for forum.
PHP Code:

    var $validfields = array(
        
'options'           => array(TYPE_ARRAY_BOOLREQ_AUTO), 

Anyone knows how to get the options bitfield working here?

Kind regards,

vincent

Opserty 08-10-2008 09:15 PM

Have you tried the set_bitfield() datamanager function instead?

Else look at forum.php in the AdminCP and see how vBulletin saves the forum options there.

scoutz 08-10-2008 09:41 PM

thanks for the reply!

I was a bit confused since the vbulletin docs said I should use an array with booleans.

Yeah i got it to work by looking at the /admin/forum.php html output the following did the trick.

PHP Code:

$userdata->set_bitfield('options','moderatenewpost'false);
$userdata->set_bitfield('options','moderatenewthread'false);
$userdata->set_bitfield('options','moderateattach'false);
$userdata->set_bitfield('options','styleoverride'false);
$userdata->set_bitfield('options','canhavepassword'true);
$userdata->set_bitfield('options','cancontainthreads'true);
$userdata->set_bitfield('options','active'true);
$userdata->set_bitfield('options','allowposting'true);
$userdata->set_bitfield('options','indexposts'true);
$userdata->set_bitfield('options','allowhtml'false);
$userdata->set_bitfield('options','allowbbcode'true);
$userdata->set_bitfield('options','allowimages'true);
$userdata->set_bitfield('options','allowsmilies'true);
$userdata->set_bitfield('options','allowicons'true);
$userdata->set_bitfield('options','allowratings'true);
$userdata->set_bitfield('options','countposts'true);
$userdata->set_bitfield('options','showonforumjump'false); 



All times are GMT. The time now is 05:55 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.01034 seconds
  • Memory Usage 1,737KB
  • 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
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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