You are here

function field_redirection_permission in Field Redirection 7.2

Same name and namespace in other branches
  1. 7 field_redirection.module \field_redirection_permission()

Implements hook_permission().

File

./field_redirection.module, line 10
Provides a field formatter to redirect to another path.

Code

function field_redirection_permission() {
  return array(
    'bypass redirection' => array(
      'title' => t('Bypass Redirection'),
      'description' => t('Allow the user to see the page this field belongs to and <em>not</em> redirect to the given path; the user will instead be provided a link to the path.'),
    ),
  );
}