mirror of
				https://github.com/smarty-php/smarty.git
				synced 2025-11-04 06:11:37 +01:00 
			
		
		
		
	* Add converted docs repo * Set theme jekyll-theme-minimal * Removed BC docs, added TOC * Added TOCs, rewrote most important links in documentation. Linked README to new Github Pages site * some link fixes
		
			
				
	
	
	
		
			938 B
		
	
	
	
	
	
	
	
			
		
		
	
	
			938 B
		
	
	
	
	
	
	
	
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.