LLMS_Admin_Import::get_view( string $file )
Retrieves the HTML of a view from the views/import 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.import.php
protected function get_view( $file ) {
ob_start();
include 'views/import/' . $file . '.php';
return ob_get_clean();
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 4.8.0 | Introduced. |