You are here

function defaultcontent_permission in Default Content 7.2

Same name and namespace in other branches
  1. 7 defaultcontent.module \defaultcontent_permission()

Implements hook_permission().

File

./defaultcontent.module, line 111
Module file for the Default content module which allow export and import of default content in a Drupal site.

Code

function defaultcontent_permission() {
  return array(
    'edit node machine name' => array(
      'title' => t('Edit node machine name'),
      'description' => t('Allow user to edit the machine name associated with a node.'),
    ),
  );
}