You are here

message_subscribe.api.php in Message Subscribe 7

Same filename and directory in other branches
  1. 8 message_subscribe.api.php

Hooks provided by the Message subscribe module.

File

message_subscribe.api.php
View source
<?php

/**
 * @file
 * Hooks provided by the Message subscribe module.
 */

/**
 * @addtogroup hooks
 * @{
 */

/**
 * Allow modules to add user IDs that need to be notified.
 */
function hook_message_subscribe_get_subscribers(Message $message, $subscribe_options = array(), $context = array()) {
}

/**
 * Alter the subscribers list.
 */
function hook_message_subscribe_get_subscribers_alter(&$uids, $values) {
}

/**
 * @} End of "addtogroup hooks".
 */

Functions

Namesort descending Description
hook_message_subscribe_get_subscribers Allow modules to add user IDs that need to be notified.
hook_message_subscribe_get_subscribers_alter Alter the subscribers list.