You are here

function computed_field_tools_permission in Computed Field Tools 7

Implements hook_permission().

File

./computed_field_tools.module, line 48
This module offers a quick way to re-compute computed fields when needed.

Code

function computed_field_tools_permission() {
  return array(
    'recompute computed fields' => array(
      'description' => t('Recompute computed fields on entities.'),
      'title' => t('Recompute computed fields'),
      'restrict access' => TRUE,
    ),
  );
}