Merge pull request #4027 from magnolia61/(CRM-15223)-Include-gender-and-age-in-(const...
[civicrm-core.git] / CRM / Core / Smarty / plugins / prefilter.resetExtScope.php
1 <?php
2
3 /**
4 * Wrap every Smarty template in a {crmScope} tag that sets the
5 * variable "extensionKey" to blank.
6 */
7 function smarty_prefilter_resetExtScope($tpl_source, &$smarty) {
8 return
9 '{crmScope extensionKey=""}'
10 . $tpl_source
11 .'{/crmScope}';
12 }