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
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 "emain), 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
i = 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