aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-functions/api-set-template-dir.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/docs/programmers/api-functions/api-set-template-dir.md')
-rw-r--r--vendor/smarty/smarty/docs/programmers/api-functions/api-set-template-dir.md46
1 files changed, 46 insertions, 0 deletions
diff --git a/vendor/smarty/smarty/docs/programmers/api-functions/api-set-template-dir.md b/vendor/smarty/smarty/docs/programmers/api-functions/api-set-template-dir.md
new file mode 100644
index 000000000..2de23309b
--- /dev/null
+++ b/vendor/smarty/smarty/docs/programmers/api-functions/api-set-template-dir.md
@@ -0,0 +1,46 @@
+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()`](#api.get.template.dir),
+[`addTemplateDir()`](#api.add.template.dir) and
+[`$template_dir`](#variable.template.dir).