vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Datastore - How to display data? (https://vborg.vbsupport.ru/showthread.php?t=114555)

Boofo 05-09-2006 03:18 PM

Here's what I use and it works perfectly. ;)

PHP Code:

if(THIS_SCRIPT == 'index')
{
global 
$specialtemplates;
$specialtemplates array_merge($specialtemplates, array('boofocounter','averagevelocity','topvelocity','wol_spiders'));


You need the global part. Yours is for a single template also.

Aurous 05-09-2006 03:39 PM

Oh ya, I forgot about declaring global variable. This works too for single template.

Code:

if (THIS_SCRIPT == 'index')
{
global $specialtemplates;
$specialtemplates[] = 'item';
}

hmm we can use this for multiple templates too I believe:

$specialtemplates[] = 'item1';
$specialtemplates[] = 'item2';
etc.

Boofo 05-09-2006 04:08 PM

Quote:

Originally Posted by Aurous
Oh ya, I forgot about declaring global variable. This works too for single template.

Code:

if (THIS_SCRIPT == 'index')
{
global $specialtemplates;
$specialtemplates[] = 'item';
}

hmm we can use this for multiple templates too I believe:

$specialtemplates[] = 'item1';
$specialtemplates[] = 'item2';
etc.

No, use the array_merge for multiple templates. ;)

Aurous 05-09-2006 04:38 PM

Ok. Thanks for all the info :) I am starting to like datastore!

Boofo 05-09-2006 04:41 PM

Quote:

Originally Posted by Aurous
Ok. Thanks for all the info :) I am starting to like datastore!

Remember, the datastore is your friend. ;)

I try to use it whenever I can. We just did a forumhome counter for my site that uses the datastore and saves on an unessessary query. It uses 1 query to update the datastore and no query to pull the info from the datstore. It works great. ;)

Aurous 05-09-2006 04:51 PM

Yup, I just helped a user on vB by changing his hack by storing data in datastore instead of a text file. Works great.

https://vborg.vbsupport.ru/showthrea...hreadid=115116


All times are GMT. The time now is 02:30 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.01102 seconds
  • Memory Usage 1,728KB
  • 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
  • (2)bbcode_code_printable
  • (1)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (6)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