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)


Top ↑

Return Return

(void)


Top ↑

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;

		}

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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