LLMS_Update::function_complete( string $function )
Should be called by each update function when it’s finished updates the progress in the functions array
Parameters Parameters
- $function
-
(string) (Required) function name
Return Return
(void)
Source Source
File: includes/abstracts/abstract.llms.update.php
protected function function_complete( $function ) { $progress = $this->get_progress(); $progress['functions'][ $function ] = 'done'; update_option( 'llms_update_' . $this->version, $progress ); $this->log( sprintf( '%s::%s() is complete', get_class( $this ), $function ) ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |