LLMS_Admin_Reporting::includes()
Include all required classes & files for the Reporting screens
Description Description
Return Return
(void)
Source Source
File: includes/admin/reporting/class.llms.admin.reporting.php
public static function includes() { include_once LLMS_PLUGIN_DIR . '/includes/abstracts/abstract.llms.admin.table.php'; // include all the table classes foreach ( glob( LLMS_PLUGIN_DIR . '/includes/admin/reporting/tables/*.php' ) as $filename ) { include_once $filename; } // 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 |
---|---|
3.2.0 | Introduced. |
User Contributed Notes User Contributed Notes
Permalink: