Merge remote-tracking branch 'upstream/4.3' into 4.3-4.4-2013-10-23-19-26-23
[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 }