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_Admin_Resources::get_view( string $file )
Retrieves the HTML of a view from the views/dashboard directory.
Parameters Parameters
- $file
-
(string) (Required) The file basename of the view to retrieve.
Return Return
(string) The HTML content of the view.
Source Source
File: includes/admin/class.llms.admin.resources.php
private static function get_view( $file ) {
ob_start();
include 'views/resources/' . $file . '.php';
return ob_get_clean();
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 7.4.1 | Introduced. |