lifterlms_template_student_dashboard_wrapper_open( string $layout )

Output the student dashboard wrapper opening tags


Parameters Parameters

$layout

(string) (Required) Dashboard layout. Accepts "stacked" (default) or "columns".


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/functions/llms.functions.templates.dashboard.php

	function lifterlms_template_student_dashboard_wrapper_open( $layout ) {
		$current = LLMS_Student_Dashboard::get_current_tab( 'slug' );
		echo '<div class="llms-student-dashboard ' . esc_attr( $current ) . ' llms-sd-layout-' . esc_attr( $layout ) . '" data-current="' . esc_attr( $current ) . '">';
	}


Top ↑

Changelog Changelog

Changelog
Version Description
7.8.0
3.10.0 Unknown.
3.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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