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)
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 ) {
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.17.5 | Introduced. |