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.


Top ↑

Return Return

(string) The HTML content of the view.


Top ↑

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();

	}


Top ↑

Changelog Changelog

Changelog
Version Description
4.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.