LLMS_Abstract_Notification_Controller::add_actions()

Add an action to trigger the notification to send


Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/llms.abstract.notification.controller.php

	protected function add_actions() {

		foreach ( $this->action_hooks as $hook ) {
			add_action( $hook, array( $this, 'action_callback' ), $this->action_accepted_args, $this->action_priority );
		}

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.