function _hosting_client_platform_access in Hosting 6.2
Same name and namespace in other branches
- 7.4 client/hosting_client.module \_hosting_client_platform_access()
- 7.3 client/hosting_client.module \_hosting_client_platform_access()
Access callback for the client platform access tab.
1 string reference to '_hosting_client_platform_access'
- hosting_client_menu in client/
hosting_client.module - Implementation of hook_menu().
File
- client/
hosting_client.module, line 629
Code
function _hosting_client_platform_access($node) {
return $node->type == 'platform' && $node->platform_status != HOSTING_PLATFORM_DELETED && node_access('update', $node) && user_access('administer clients');
}