Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

LLMS_Update::enqueue()

Adds all functions to the queue


Return Return

(void)


Top ↑

Source Source

File: includes/abstracts/abstract.llms.update.php

	private function enqueue() {

		// Schedule an action for each function.
		foreach ( $this->functions as $func ) {
			$this->schedule_function( $func );
		}

		$this->log( sprintf( 'LLMS update tasks enqueued for version %s', $this->version ) );

	}


Top ↑

User Contributed Notes User Contributed Notes

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