LLMS_Abstract_Notification_Controller::get_additional_options( string $type )

Get an array of additional options to be added to the notification view in the admin panel


Parameters Parameters

$type

(string) (Required) Type of the notification.


Top ↑

Return Return

(array)


Top ↑

Source Source

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

	public function get_additional_options( $type ) {
		/**
		 * Filters the notification additional options
		 *
		 * The dynamic portion of this filter, `$this->id`, refers to the notification trigger identifier.
		 *
		 * @param array                                 An array of additional options for the notification.
		 * @param LLMS_Abstract_Notification_Controller The notification controller instance.
		 * @param string                                The notification type [basic|email].
		 */
		return apply_filters( "llms_notification_{$this->id}_additional_options", $this->set_additional_options( $type ), $this, $type );
	}


Top ↑

Changelog Changelog

Changelog
Version Description
5.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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