You are here

function contextual_range_filter_permission in Views Contextual Range Filter 7

Implements hook_permission().

File

./contextual_range_filter.module, line 122
contextual_range_filter.module

Code

function contextual_range_filter_permission() {
  return array(
    'administer contextual range filters' => array(
      'title' => t('Administer contextual range filters'),
      'description' => t('Allow access the Contextual Range Filter configuration page.'),
    ),
  );
}