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

236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
        );
    }
 
    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.