diff options
author | Kevin Chabowski <kevin@kch42.de> | 2014-05-24 01:39:33 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2014-05-24 01:39:33 +0200 |
commit | 84d815f4e006e02521759070bb89025dab80b219 (patch) | |
tree | 418a03f0b8be181cb29230ad5e808d3213b4d3cb /tests/test_scoping/test.tpl | |
parent | fdbe2e9521aa54ec6e0b70c1cb0f532248e531e4 (diff) | |
download | ste-84d815f4e006e02521759070bb89025dab80b219.tar.gz ste-84d815f4e006e02521759070bb89025dab80b219.tar.bz2 ste-84d815f4e006e02521759070bb89025dab80b219.zip |
Added scoping.
ste:mktag generated tags now have an own scope. They even resemble
closures, since they inherit their parent scope.
A lot of work was done to keep this compatible with older programs.
However:
* Templates that relied on the non-scoping behavior of tags will probably
fail.
* Since $ste->vars is no longer an actual array, things like
$ste->vars["foo"]["bar"] = "baz"
are no longer possible! A single field access will still work:
$ste->vars["foo"] = "bar"
Diffstat (limited to 'tests/test_scoping/test.tpl')
-rw-r--r-- | tests/test_scoping/test.tpl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_scoping/test.tpl b/tests/test_scoping/test.tpl new file mode 100644 index 0000000..25a46e7 --- /dev/null +++ b/tests/test_scoping/test.tpl @@ -0,0 +1,6 @@ +<ste:mktag name="foo"> + <ste:set var="bla">!</ste:set> +</ste:mktag> + +<ste:foo /> +$bla
\ No newline at end of file |