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)
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 ) ); }
Expand full source code Collapse full source code View on GitHub