function hosting_platform_perm in Hosting 6.2
Same name and namespace in other branches
- 5 platform/hosting_platform.module \hosting_platform_perm()
Implementation of hook_perm().
File
- platform/
hosting_platform.module, line 118 - Platform node type definition.
Code
function hosting_platform_perm() {
return array(
'administer platforms',
'create platform',
'view platform',
'edit platform',
'delete platform',
'view locked platforms',
'create sites on locked platforms',
);
}