View Single Post
  #5  
Old 04-01-2017, 06:53 PM
Alice Alice is offline
 
Join Date: Mar 2013
Location: Great Lakes Area
Posts: 81
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

So you can use the plugin in much the same way as I did to define the $quotemain for the footer template, right?

Code:
eval('$quotemain= "' . fetch_template('quotes_main') . '";');
eval('$quotetext= "' . fetch_template('quotes_text') . '";');
It might be a good idea. I know so many people still use 3.8.x, heck I still know someone who still uses 2.3.x LOL!

--------------- Added [DATE]1491083304[/DATE] at [TIME]1491083304[/TIME] ---------------

Quote:
Originally Posted by MarkFL View Post
You could use a global plugin hook, and I believe in vB 3 you don't even need to register the variables in your template.

I don't have time right now, but if you want, I will look into creating a vB 3.8.x product to do this.
Okay, so I got somewhere with this. In the quotes_main template (which is called in the footer template as &quotemain), I added:

Code:
<script type="text/javascript" src="clientscript/quotes_database.js"></script>
<script type="text/javascript" src="clientscript/quotes_call.js"></script>
The contents of the quotes_database.js is:

PHP Code:
    <!-- Hide the script from old browsers
    
function getQuote() {
      
// Create the arrays
      
quotes = new Array(4);
      
sources = new Array(4);

      
// Initialize the arrays with quotes
      
quotes[0] = "When I was a boy of 14, my father was so ignorant..." +
      
"but when I got to be 21, I was astonished at how much he had learned " +
      
"in 7 years.";
      
sources[0] = "Mark Twain";
      
quotes[1] = "Everybody is ignorant. Only on different subjects.";
      
sources[1] = "Will Rogers";
      
quotes[2] = "They say such nice things about people at their funerals " +
      
"that it makes me sad that I'm going to miss mine by just a few days.";
      
sources[2] = "Garrison Keilor";
      
quotes[3] = "What's another word for thesaurus?";
      
sources[3] = "Steven Wright";

      
// Get a random index into the arrays
      
Math.floor(Math.random() * quotes.length);

      
// Write out the quote as HTML
      
document.write("<dl style='background-color:#F7D7C8'>\n");
      
document.write("<dt>" "\"<i>" quotes[i] + "</i>\"\n");
      
document.write("<b><dd>" "- " sources[i] + "</b>\"\n");
      
document.write("<dl>\n");
    }
    
// Stop hiding the script --> 
And the contents of quotes_call.js is:

PHP Code:
      <!-- Hide the script from old browsers
      getQuote
();
      
// Stop hiding the script --> 
And this is how it shows up on my forum:

http://i.imgur.com/WKaQou4.png?1

-Sara
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01426 seconds
  • Memory Usage 1,796KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code
  • (2)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • showpost_complete