| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 | 
							- <?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) {
 
- }
 
 
  |