function blog_perm in Drupal 6
Same name and namespace in other branches
- 4 modules/blog.module \blog_perm()
- 5 modules/blog/blog.module \blog_perm()
Implementation of hook_perm().
File
- modules/
blog/ blog.module, line 24 - Enables keeping an easily and regularly updated web page or a blog.
Code
function blog_perm() {
return array(
'create blog entries',
'delete own blog entries',
'delete any blog entry',
'edit own blog entries',
'edit any blog entry',
);
}