You are here

function bootstrap_tour_permission in Bootstrap Tour 7

Same name and namespace in other branches
  1. 7.2 bootstrap_tour.module \bootstrap_tour_permission()

Implementation of hook_permission()

File

./bootstrap_tour.module, line 199

Code

function bootstrap_tour_permission() {
  return array(
    'administer bootstrap tours' => array(
      'title' => t('Administer bootstrap tours'),
      'description' => t('Create and edit Bootstrap Tours'),
    ),
  );
}