Jump to content

Recommended Posts

Posted

Are you looking for this?

$t = new TemplateFile($config->paths->templates . "./{$page->template}.php");
$t->set( "hello", "hello world" );
$t->set( 'input', $input);
echo $t->render();
  • Like 2
Posted


Soma's correct with this. But minor point:
$t = new TemplateFile($config->paths->templates . "./{$page->template}.php");
 
That "./" would probably prevent it from working.
 
It should probably be:
 
$t = new TemplateFile($config->paths->templates . "$page->template.php");
Or if you are doing this already from a template file (script is already in /site/templates/):
 
$t = new TemplateFile("./$page->template.php"); 
 
 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...