LLMS_Admin_Reporting::includes()
Include all required classes & files for the Reporting screens.
Return Return
(void)
Source Source
File: includes/admin/reporting/class.llms.admin.reporting.php
public static function includes() {
// Include tab classes.
foreach ( glob( LLMS_PLUGIN_DIR . '/includes/admin/reporting/tabs/*.php' ) as $filename ) {
include_once $filename;
}
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 6.0.0 | Removed loading of class files that don't instantiate their class in favor of autoloading. |
| 3.2.0 | |
| 3.16.0 | Introduced. |