function _support_autosubscribe_access in Support Ticketing System 7
Same name and namespace in other branches
- 6 support.module \_support_autosubscribe_access()
Callback access function for 'support/autocomplete/autosubscribe' menu item.
Return value
<bool>
1 string reference to '_support_autosubscribe_access'
- support_menu in ./
support.module - Implementation of hook_menu().
File
- ./
support.module, line 3898 - support.module
Code
function _support_autosubscribe_access() {
return user_access('administer support') || user_access('can subscribe other users to notifications');
}