function workspace_perm in Workspace 6
Same name and namespace in other branches
- 5 workspace.module \workspace_perm()
Implementation of hook_perm().
File
- ./
workspace.module, line 135 - Presents a user-centric view of content.
Code
function workspace_perm() {
return array(
'access workspace',
'administer own workspace',
'administer workspaces',
'view all workspaces',
);
}