You are here

function back_to_top_permission in Back To Top 7

Implements hook_permission().

File

./back_to_top.module, line 272
Back To Top link using JQuery.

Code

function back_to_top_permission() {
  return array(
    'access back_to_top settings' => array(
      'title' => t('Access Back to top settings'),
      'description' => t('Access Back to top settings.'),
    ),
  );
}