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.
Return Return
(array)
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 ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |