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_Generator::generate_course()
Generator called for single course imports
Description Description
Converts the single course into a format that can be handled by the bulk courses generator and invokes that generator.
Return Return
(void)
Source Source
File: includes/class.llms.generator.php
*/ public function get_results() { if ( $this->is_error() ) { return $this->error; } return $this->get_stats(); } /** * Get "stats" about the generated content. * * @since 4.7.0 * * @return array */
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.3.0 | Introduced. |