You are here

function campaignmonitor_user_permission in Campaign Monitor 7

Implements hook_perm().

File

modules/campaignmonitor_user/campaignmonitor_user.module, line 11
Tab to the profile page to select newsletters to subscribe to.

Code

function campaignmonitor_user_permission() {
  return [
    'access campaign monitor user' => [
      'title' => t('Access Campaign Monitor on user page'),
      'description' => t('Allow user to subscribe to lists on the user page.'),
    ],
  ];
}