vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   CODERS PLEASE DISCUSS!!! Pre-Datastore modifications with XML-files (UPDATE 28-7) (https://vborg.vbsupport.ru/showthread.php?t=93007)

merk 09-10-2005 09:44 PM

Ive just hit a major major snag with my code using
PHP Code:

$vbulletin->datastore->fetch(array('menu_left''menu_right')); 

to fetch data.

It appears in global_start it occurs too late in the process and overwrites certain datastore objects (because it requeries all default datastore objects and fetches them as well) causing the time offset to be incorrect.

How do you guys currently retrieve datastore objects? Just a query? File edits?

Andreas 09-10-2005 11:30 PM

File Edits.
If you do it in config.php it will be a one-time edit :)

merk 09-10-2005 11:31 PM

config.php - interesting.

What does the variable look like?

At the moment im happy to introduce a query for this purpose until a proper solution is made.

Andreas 09-10-2005 11:34 PM

PHP Code:

if (THIS_SCRIPT == 'whatever')
{
$specialtemplates[] = 'item';



Boofo 09-13-2005 12:28 AM

Here's what I use the Kirby came up with and it works excellently by the way. ;)

Also, you don't need an if THIS_SCRIPT with it doing it this way. It works globablly. I have one for forumdisplay and 2 for forumhome in there and they all work fine. ;)

PHP Code:

 // ****** SPECIALTEMPLATES *****
// Add any specialtemplates here for any products or mods that use the datastore, to save
// from re-doing file edits on an upgrade or re-install of vBulletin (until they give us a better
// way to do it, anyway). Thanks to KirbyDE for the how-to on doing this.
global $specialtemplates;
$specialtemplates array_merge(
$specialtemplates, array(
'forumstatscache',
)); 

I added the little description to make it look more uniformly. ;)

merk 09-13-2005 12:42 AM

If you put that into config.php, you will only be able to load datastore objects for every page.

THIS_SCRIPT checks allow you to load datastore objects for a per-page basis.

Marco van Herwaarden 09-13-2005 03:47 AM

Although this is a nice and simple solution, it does load everything for every page as mentioned. Also i wouldn't be so happy if all hacks where coded this way, it would be a huge config.php loaded on every page.

Andreas 09-13-2005 03:50 AM

Honestly, class_core.php is way bigger then config.php would ever get even if every Hack added Items there ;)

But as mentioned, it should be wrapped in if (THIS_SCRIPT == ... )

Boofo 09-13-2005 04:09 AM

Quote:

Originally Posted by merk
If you put that into config.php, you will only be able to load datastore objects for every page.

THIS_SCRIPT checks allow you to load datastore objects for a per-page basis.

Well, since I only have 3 of them, that is not a big issue, but yes, you could do it that way. This way, if I want to use it board-wide, I can. ;)

merk 09-13-2005 11:15 PM

I am using one extra query to load my datastore items.

Just use global_start hook to do a single query which will load the items you need. I am currently happy with one extra light weight query.


All times are GMT. The time now is 09:26 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
  • Page Generation 0.01188 seconds
  • Memory Usage 1,740KB
  • 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)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete