Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-08-04-22-25-32
[civicrm-core.git] / CRM / Core / Smarty / Permissions.php
1 <?php
2
3 /**
4 * Class CRM_Core_Smarty_Permissions
5 */
6 class CRM_Core_Smarty_Permissions {
7 // non-static adapter for CRM_Core_Permission::check
8 /**
9 * @param $offset
10 *
11 * @return bool
12 */
13 function check($offset) {
14 return CRM_Core_Permission::check($offset);
15 }
16
17 }