Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LLMS_Abstract_Notification_Controller::add_custom_subscriptions( $type )
Add custom subscriptions
Return Return
(void)
Source Source
File: includes/abstracts/llms.abstract.notification.controller.php
private function add_custom_subscriptions( $type ) { $option = $this->get_option( $type . '_custom_subscribers' ); $subscribers = explode( ',', $option ); foreach ( $subscribers as $subscriber ) { $subscriber = trim( $subscriber ); if ( $subscriber ) { $this->subscribe( $subscriber, $type ); } } }
Expand full source code Collapse full source code View on GitHub