You are here

function browsersync_permission in Browsersync 7

Implements hook_permission().

File

./browsersync.module, line 25
Code for the Browsersync module.

Code

function browsersync_permission() {
  return array(
    'use browsersync' => array(
      'title' => t('Use Browsersync'),
    ),
  );
}