You are here

function webform_hints_permission in Webform Hints 7

Implements hook_permission().

File

./webform_hints.module, line 18
This module applies the titles of webform components as placeholder hints.

Code

function webform_hints_permission() {
  return array(
    'administer Webform Hints settings' => array(
      'title' => t('Administer Webform Hints settings'),
      'restrict access' => TRUE,
    ),
  );
}