LLMS_Student_Dashboard::get_tabs_for_nav()

Retrieve dashboard tab data as required to display navigation links Excludes any endpoint disabled by deleting the slug from account settings


Return Return

(array)


Top ↑

Source Source

File: includes/class.llms.student.dashboard.php

			);
		}

		return apply_filters(
			'llms_get_student_dashboard_tabs',
			$tabs
		);

	}

	/**
	 * Retrieve dashboard tab data as required to display navigation links
	 * Excludes any endpoint disabled by deleting the slug from account settings
	 *
	 * @return   array
	 * @since    3.17.5
	 * @version  3.17.5
	 */
	public static function get_tabs_for_nav() {

		$tabs = array();

		foreach ( self::get_tabs() as $var => $data ) {



Top ↑

Changelog Changelog

Changelog
Version Description
3.17.5 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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