You are here

notify_subscribeonly.module in Notify 7

Notify Views Integration provides integartion with the Views module.

Tells the Views module about the Notify database so you can create listings of users by Notify subscriptions status for export or administration.

File

submodules/notify_subscribeonly/notify_subscribeonly.module
View source
<?php

/**
 * @file
 * Notify Views Integration provides integartion with the Views module.
 *
 * Tells the Views module about the Notify database so you can create
 * listings of users by Notify subscriptions status for export or
 * administration.
 */

/**
 * Implements hook_help().
 */
function notify_subscribeonly_help($path, $arg) {
  switch ($path) {
    case 'admin/help#notify_subscribeonly':
      $output = '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('This submodule of <strong>Notify</strong> allows visitors to register for the newsletter without becoming authenticated users.') . '</p>';
      return $output;
  }
}

Functions

Namesort descending Description
notify_subscribeonly_help Implements hook_help().