Merge branch 'master' into findById
[civicrm-core.git] / CRM / Core / Smarty / plugins / prefilter.resetExtScope.php
CommitLineData
d9aa1c6b
TO
1<?php
2
3/**
4 * Wrap every Smarty template in a {crmScope} tag that sets the
5 * variable "extensionKey" to blank.
6 */
7function smarty_prefilter_resetExtScope($tpl_source, &$smarty) {
8 return
9 '{crmScope extensionKey=""}'
10 . $tpl_source
11 .'{/crmScope}';
12}