aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/smarty/smarty/docs/programmers/api-functions/api-get-tags.md
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/smarty/smarty/docs/programmers/api-functions/api-get-tags.md')
-rw-r--r--vendor/smarty/smarty/docs/programmers/api-functions/api-get-tags.md40
1 files changed, 40 insertions, 0 deletions
diff --git a/vendor/smarty/smarty/docs/programmers/api-functions/api-get-tags.md b/vendor/smarty/smarty/docs/programmers/api-functions/api-get-tags.md
new file mode 100644
index 000000000..7729b468b
--- /dev/null
+++ b/vendor/smarty/smarty/docs/programmers/api-functions/api-get-tags.md
@@ -0,0 +1,40 @@
+getTags()
+
+return tags used by template
+
+Description
+===========
+
+string
+
+getTags
+
+object
+
+template
+
+This function returns an array of tagname/attribute pairs for all tags
+used by the template. It uses the following parameters:
+
+- `template` is the template object.
+
+> **Note**
+>
+> This function is experimental.
+
+
+ <?php
+ include('Smarty.class.php');
+ $smarty = new Smarty;
+
+ // create template object
+ $tpl = $smarty->createTemplate('index.tpl');
+
+ // get tags
+ $tags = $smarty->getTags($tpl);
+
+ print_r($tags);
+
+ ?>
+
+