You are here

function message_notify_ctools_plugin_api in Message Notify 7.2

Implements hook_ctools_plugin_api().

File

./message_notify.module, line 126
Message notify.

Code

function message_notify_ctools_plugin_api($module, $api) {
  if ($module == 'message_notify' && $api == 'notifier') {
    return array(
      'version' => 1,
    );
  }
}