You are here

function campaignmonitor_user_theme in Campaign Monitor 8

Implements hook_theme().

File

modules/campaignmonitor_user/campaignmonitor_user.module, line 94
Adds a tab to the profile page that enables users to select which newsletters they want to subscribe to.

Code

function campaignmonitor_user_theme($existing, $type, $theme, $path) {
  return [
    'campaignmonitor_user_profile' => [
      'variables' => [
        'content' => NULL,
      ],
      'template' => 'campaignmonitor-user-profile',
    ],
  ];
}