aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-functions/api-test-install.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/docs/programmers/api-functions/api-test-install.md')
-rw-r--r--vendor/smarty/smarty/docs/programmers/api-functions/api-test-install.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/smarty/smarty/docs/programmers/api-functions/api-test-install.md b/vendor/smarty/smarty/docs/programmers/api-functions/api-test-install.md
new file mode 100644
index 000000000..3afe5ec1d
--- /dev/null
+++ b/vendor/smarty/smarty/docs/programmers/api-functions/api-test-install.md
@@ -0,0 +1,22 @@
+testInstall()
+
+checks Smarty installation
+
+Description
+===========
+
+void
+
+testInstall
+
+This function verifies that all required working folders of the Smarty
+installation can be accessed. It does output a corresponding protocoll.
+
+
+ <?php
+ require_once('Smarty.class.php');
+ $smarty = new Smarty();
+ $smarty->testInstall();
+ ?>
+
+