LLMS_Notifications::schedule_processing( string $type )
Schedule a processor to dispatch its queue on shutdown
Description Description
Parameters Parameters
- $type
-
(string) (Required) processor name/type (eg: email)
Return Return
(void)
Source Source
File: includes/notifications/class.llms.notifications.php
public function schedule_processing( $type ) { if ( ! in_array( $type, $this->processors_to_dispatch ) ) { $this->processors_to_dispatch[] = $type; } }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.8.0 | Introduced. |