LLMS_Notifications::get_processor( string $processor )
Retrieve a single processor instance
Parameters Parameters
- $processor
-
(string) (Required) Name of the processor (eg: email).
Return Return
Source Source
File: includes/notifications/class.llms.notifications.php
* @return LLMS_Abstract_Notification_Processor|false */ public function get_processor( $processor ) { if ( isset( $this->processors[ $processor ] ) ) { return $this->processors[ $processor ]; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |