LLMS_Admin_Menus::status_page_includes()
Include files used on the Status page.
Return Return
(void)
Source Source
File: includes/admin/class.llms.admin.menus.php
protected function status_page_includes() {
// Tools.
foreach ( glob( LLMS_PLUGIN_DIR . 'includes/admin/tools/class-llms-admin-tool-*.php' ) as $tool_path ) {
require_once $tool_path;
}
/**
* Action which can be used by 3rd parties to load custom admin page tools.
*
* @since 4.12.0
*/
do_action( 'llms_load_admin_tools' );
}
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. |
| 4.12.0 | Added llms_load_admin_tools action. |
| 3.37.19 | Introduced. |