You are here

function aet_insert_permission in Advanced Entity Tokens 7

Implementation of hook_permission().

File

aet_insert/aet_insert.module, line 37

Code

function aet_insert_permission() {
  return array(
    'administer AET Insert' => array(
      'title' => t('Administer AET Insert'),
      'description' => t('Administration tasks for AET Insert.'),
      'restrict access' => TRUE,
    ),
    'use AET Insert' => array(
      'title' => t('Use AET Insert'),
      'description' => t('Using the AET Insert field.'),
    ),
  );
}