Overview
Most commonly this take is used to avoid any kind of variable collisions or to confirm data to a particular naming mechanism. Scoping is most often done on the Tag level (e.g. the Collection Tag), but gives you another level of control and flexibility.
Example
---title: Grimmace Shake--- {{ scope:stuff }}<h1>{{ stuff:title }}</h1>{{ /scope:stuff }}
<?php $title = 'Grimmace Shake';?> <s:scope:stuff> <h1>{{ $stuff['title'] }}</h1></s:scope:stuff>
This will output:
<h1>Grimmace Shake</h1>
Parameters
scope
The name of the scope while. This is not a parameter, but part of the tag itself. For example, {{ scope:plop }}
.