function recipe_perm in Recipe 6
Same name and namespace in other branches
- 5 recipe.module \recipe_perm()
Implementation of hook_perm().
File
- ./
recipe.module, line 89 - recipe.module - share recipes
Code
function recipe_perm() {
return array(
'create recipes',
'edit own recipes',
'edit any recipes',
'export recipes',
'import recipes',
);
}