Merge branch 'master' into recurring-activity-46
[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 }