PDA

View Full Version : PhP functions with params in Templates


temporaryins
10-07-2008, 10:42 PM
I'm trying to do a pretty simple set of functions. I have a seperate custom_functions.php page I've included in my template page and now I need to call a function from that in the template and use it to print out some XHTML markup with another template called as a param in the function. The function looks like:

function graphicSection ($content) {
echo('<div>');
echo($content);
echo('</div>');
}

I want to call it in the template file as:

graphicSection($othertemplatevariable)

I don't care how the code looks really. I'd just like to be able to pass a template in as a parameter and have it print it all out. Is this even possible? What documentation do I need to look through to do this. I've looked over a lot of posts here and in the manual and can't quite find the procedures that tell me how to do this.

Marco van Herwaarden
10-08-2008, 07:41 AM
You can not make a PHP call in templates (with the exeption of a few predefined ones).

vbplusme
10-08-2008, 10:58 AM
If you were more clear about your project, you might get a better answer but from what you have provided, you need to be thinking plugin to use php code in templates.

eval('$special_event_notice = "' . fetch_template('special_event_notice'). '";');

Once you have created this plugin, you can use the variable $special_event_notice pretty much anywhere and it will display the content of the template.

But the question you are asking goes a little deeper than just calling a template.

PHP code needs to be added to a plugin in order to use it and some of the PHP calls can not be used, like echo. For example, you can not use :

echo " this is what I want to display";

But you CAN use:

$displayme = "this is what I want to display"

and just place the variable name where you want it to display in your template or any of the other vBulletin templates for that matter depending on what hooks you use.

HTH