LLMS_Beaver_Builder::load_modules()

Loads LifterLMS modules.


Return Return

(void)


Top ↑

Source Source

File: includes/class-llms-beaver-builder.php

	public function load_modules() {
		if ( ! class_exists( 'FLBUilderModule' ) ) {
			return;
		}

		if ( file_exists( LLMS_BB_MODULES_DIR ) ) {
			foreach ( glob( LLMS_BB_MODULES_DIR . '**/*.php', GLOB_NOSORT ) as $file ) {
				require_once $file;
			}
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.3.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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