You are here

function field_collection_permission in Field collection 7

Implements hook_permission().

File

./field_collection.module, line 343
Module implementing field collection field type.

Code

function field_collection_permission() {
  return array(
    'administer field collections' => array(
      'title' => t('Administer field collections'),
      'description' => t('Create and delete fields on field collections.'),
    ),
    'edit field collections' => array(
      'title' => t('Edit field collections'),
      'description' => t('Edit field collections.'),
    ),
  );
}