first import

This commit is contained in:
Bachir Soussi Chiadmi
2015-04-08 11:40:19 +02:00
commit 1bc61b12ad
8435 changed files with 1582817 additions and 0 deletions

View File

@@ -0,0 +1,95 @@
<?php
/**
* @file
* Hooks provided by the Simplenews module.
*/
/**
* @todo
*/
function hook_simplenews_issue_operations() {
}
/**
* @todo
*/
function hook_simplenews_subscription_operations() {
}
/**
* @todo
*/
function hook_simplenews_category_insert($category) {
}
/**
* @todo
*/
function hook_simplenews_category_update($category) {
}
/**
* @todo
*/
function hook_simplenews_category_delete($category) {
}
/**
* @todo
*/
function hook_simplenews_mailing_list_insert($list) {
}
/**
* @todo
*/
function hook_simplenews_subscriber_update($subscriber) {
}
/**
* @todo
*/
function hook_simplenews_subscriber_insert($subscriber) {
}
/**
* @todo
*/
function hook_simplenews_subscriber_delete($subscriber) {
}
/**
* Invoked if a user is subscribed to a newsletter.
*
* @param $subscriber
* The subscriber object including all subscriptions of this user.
*
* @param $subscription
* The subscription object for this specific subscribe action.
*/
function hook_simplenews_subscribe_user($subscriber, $subscription) {
}
/**
* Invoked if a user is unsubscribed from a newsletter.
*
* @param $subscriber
* The subscriber object including all subscriptions of this user.
*
* @param $subscription
* The subscription object for this specific unsubscribe action.
*/
function hook_simplenews_unsubscribe_user($subscriber, $subscription) {
}