PHP Classes

File: htdocs/xoops_lib/vendor/smarty/smarty/docs/programmers/api-functions/api-set-template-dir.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-set-template-dir.md   Download  
File: htdocs/xoops_lib/vendor/smarty/smarty/docs/programmers/api-functions/api-set-template-dir.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: 938 bytes
 

Contents

Class file image Download

setTemplateDir()

set the directories where templates are stored

Description

Smarty

setTemplateDir

string\|array

template\_dir

<?php

// set a single directory where the templates are stored
$smarty->setTemplateDir('./cache');

// view the template dir chain
var_dump($smarty->getTemplateDir());

// set multiple directoríes where templates are stored
$smarty->setTemplateDir(array(
    'one' => './templates',
    'two' => './templates_2',
    'three' => './templates_3',
));

// view the template dir chain
var_dump($smarty->getTemplateDir());

// chaining of method calls
$smarty->setTemplateDir('./templates')
       ->setCompileDir('./templates_c')
       ->setCacheDir('./cache');

?>

   

See also getTemplateDir(), addTemplateDir() and $template_dir.