Commit | Line | Data |
---|---|---|
abbf7b48 TO |
1 | <?php |
2 | ||
b5c2afd0 EM |
3 | /** |
4 | * Class CRM_Core_Smarty_Permissions | |
5 | */ | |
abbf7b48 | 6 | class CRM_Core_Smarty_Permissions { |
a0ee3941 | 7 | /** |
4f1f1f2a | 8 | * non-static adapter for CRM_Core_Permission::check |
a0ee3941 EM |
9 | * @param $offset |
10 | * | |
11 | * @return bool | |
12 | */ | |
00be9182 | 13 | public function check($offset) { |
abbf7b48 TO |
14 | return CRM_Core_Permission::check($offset); |
15 | } | |
16 | ||
b5c2afd0 | 17 | } |