PHP Classes

File: htdocs/xoops_lib/vendor/smarty/smarty/docs/programmers/api-functions/api-create-template.md

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/xoops_lib/vendor/smarty/smarty/docs/programmers/api-functions/api-create-template.md   Download  
File: htdocs/xoops_lib/vendor/smarty/smarty/docs/programmers/api-functions/api-create-template.md
Role: Example script
Content type: text/markdown
Description: Example script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 1 month ago
Size: 1,114 bytes
 

Contents

Class file image Download

createTemplate()

returns a template object

Description

Smarty\_Internal\_Template

createTemplate

string

template

object

parent

Smarty\_Internal\_Template

createTemplate

string

template

array

data

Smarty\_Internal\_Template

createTemplate

string

template

string

cache\_id

string

compile\_id

object

parent

Smarty\_Internal\_Template

createTemplate

string

template

string

cache\_id

string

compile\_id

array

data

This creates a template object which later can be rendered by the display or fetch method. It uses the following parameters:

<!-- -->

<?php
include('Smarty.class.php');
$smarty = new Smarty;

// create template object with its private variable scope
$tpl = $smarty->createTemplate('index.tpl');

// assign variable to template scope
$tpl->assign('foo','bar');

// display the template
$tpl->display();
?>

    

See also display(), and templateExists().