function blog_perm

Implementation of hook_perm().

Archivo

drupal-6.x/modules/blog/blog.module, line 24
Enables keeping an easily and regularly updated web page or a blog.

Código

function blog_perm() {
  return array(
    'create blog entries',
    'delete own blog entries',
    'delete any blog entry',
    'edit own blog entries',
    'edit any blog entry',
  );
}