You are here

function compact_forms_permission in Compact Forms 7

Implements hook_permission().

File

./compact_forms.module, line 21
Compact Forms Drupal module.

Code

function compact_forms_permission() {
  return array(
    'administer Compact Forms' => array(
      'title' => t('Administer Compact Forms'),
      'description' => t('Configure forms to display compact and their behavior.'),
    ),
  );
}