You are here

function addanother_permission in Add Another 7.2

Same name and namespace in other branches
  1. 7 addanother.module \addanother_permission()

Implements hook_permission().

File

./addanother.module, line 23
The main file for the addanother module.

Code

function addanother_permission() {
  return array(
    'administer add another' => array(
      'title' => t('Administer Add Another'),
      'description' => t('Configure content types for Add Another'),
    ),
    'use add another' => array(
      'title' => t('Use Add Another'),
      'description' => t('Use the "Add Another..." link or button to create additional content'),
    ),
  );
}