vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=252)
-   -   Help with a header plugin... (https://vborg.vbsupport.ru/showthread.php?t=285585)

DivinoZarathos 07-15-2012 04:33 PM

Help with a header plugin...
 
Hi all! I'm trying to create a random quote plugin for my board's header.
So far, i created the following plugin on global_bootstrap_init_start:

Code:

if ($result = $vbulletin->db->query_first
        ("
                SELECT text, author
                FROM " . TABLE_PREFIX . "cs_randomquotes
                WHERE approved = 1
                ORDER BY RAND() LIMIT 1
        ")
)
{
        $templater = vB_Template::create('header_randomquote');
                $templater->register('author', $result['author']);
                $templater->register('text', $result['text']);

        $randomquote = $templater->render();
}
else
        $randomquote = '';

vB_Template::preRegister('header', array('randomquote' => $randomquote));

Then I created the header_randomquote template:

Code:

<div class="text">{vb:raw text}</div>
<vb:if condition="$author">
<div class="author">{vb:raw author}</div>
</vb:if>

And I finally edited my header template adding:

Code:

<div id="header_randomquote">{vb:raw randomquote}</div>
Query is ok (well, I think it's ok to get random entries)... but nothing is being shown. Can you find any error in my code? :S

Lynne 07-15-2012 05:03 PM

Change your else to actually spit something out in $randomquote so you can see which path it is taking (if or else).

soniceffect 07-15-2012 09:11 PM

Quote:

Originally Posted by DivinoZarathos (Post 2348361)
Hi all! I'm trying to create a random quote plugin for my board's header.
So far, i created the following plugin on global_bootstrap_init_start:

Code:

if ($result = $vbulletin->db->query_first
        ("
                SELECT text, author
                FROM " . TABLE_PREFIX . "cs_randomquotes
                WHERE approved = 1
                ORDER BY RAND() LIMIT 1
        ")
)
{
        $templater = vB_Template::create('header_randomquote');
                $templater->register('author', $result['author']);
                $templater->register('text', $result['text']);

        $randomquote = $templater->render();
}
else
        $randomquote = '';

vB_Template::preRegister('header', array('randomquote' => $randomquote));

Then I created the header_randomquote template:

Code:

<div class="text">{vb:raw text}</div>
<vb:if condition="$author">
<div class="author">{vb:raw author}</div>
</vb:if>

And I finally edited my header template adding:

Code:

<div id="header_randomquote">{vb:raw randomquote}</div>
Query is ok (well, I think it's ok to get random entries)... but nothing is being shown. Can you find any error in my code? :S


Your missing a closing brace on your IF/ELSE block in your plugin


All times are GMT. The time now is 05:25 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.01059 seconds
  • Memory Usage 1,725KB
  • 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
  • (6)bbcode_code_printable
  • (1)bbcode_quote_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