Merge remote-tracking branch 'upstream/4.5' into 4.5-master-2015-01-05-23-28-33
[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 public function check($offset) {
14 return CRM_Core_Permission::check($offset);
15 }
16
17 }