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