You are here

commons_blog.features.user_permission.inc in Drupal Commons 6.2

File

modules/features/commons_blog/commons_blog.features.user_permission.inc
View source
<?php

/**
 * Implementation of hook_user_default_permissions().
 */
function commons_blog_user_default_permissions() {
  $permissions = array();

  // Exported permission: create blog entries
  $permissions['create blog entries'] = array(
    'name' => 'create blog entries',
    'roles' => array(
      '0' => 'authenticated user',
    ),
  );

  // Exported permission: delete any blog entry
  $permissions['delete any blog entry'] = array(
    'name' => 'delete any blog entry',
    'roles' => array(
      '0' => 'community manager',
    ),
  );

  // Exported permission: delete own blog entries
  $permissions['delete own blog entries'] = array(
    'name' => 'delete own blog entries',
    'roles' => array(
      '0' => 'authenticated user',
    ),
  );

  // Exported permission: edit any blog entry
  $permissions['edit any blog entry'] = array(
    'name' => 'edit any blog entry',
    'roles' => array(
      '0' => 'community manager',
    ),
  );

  // Exported permission: edit own blog entries
  $permissions['edit own blog entries'] = array(
    'name' => 'edit own blog entries',
    'roles' => array(
      '0' => 'authenticated user',
    ),
  );
  return $permissions;
}

Functions

Namesort descending Description
commons_blog_user_default_permissions Implementation of hook_user_default_permissions().