LLMS_Notifications::schedule_processing( string $id )

Schedule a processor to dispatch its queue on shutdown


Parameters Parameters

$id

(string) (Required) Processor ID (eg: email).


Top ↑

Return Return

(void)


Top ↑

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;

		}

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0
3.38.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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