function field_permission in Drupal 7
Implements hook_permission().
Related topics
File
- modules/
field/ field.module, line 322 - Attach custom data fields to Drupal entities.
Code
function field_permission() {
return array(
'administer fields' => array(
'title' => t('Administer fields'),
'description' => t('Additional permissions are required based on what the fields are attached to (for example, <a href="@url">administer content types</a> to manage fields attached to content).', array(
'@url' => '#module-node',
)),
'restrict access' => TRUE,
),
);
}