You are here

function fasttoggle_permission in Fasttoggle 7

Implements hook_perm().

Individual modules are responsible for implementing any additional permissions, but they should generally use the same permissions that are normally used to access the field, plus any system wide and content-type specific options for en/disabling the links.

File

./fasttoggle.module, line 75
Enables fast toggling of binary or not so binary settings.

Code

function fasttoggle_permission() {
  return array(
    'administer fasttoggle' => array(
      'title' => t('Administer Fasttoggle'),
    ),
  );
}