Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

LLMS_Admin_AddOns::output_navigation()

Output the navigation bar


Return Return

(void)


Top ↑

Source Source

File: includes/admin/class.llms.admin.addons.php

402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
*/
private function output_content() {
    ?>
    <ul class="llms-addons-wrap section--<?php echo esc_attr( $this->get_current_section() ); ?>">
 
        <?php do_action( 'lifterlms_before_addons' ); ?>
 
        <?php
        foreach ( $this->get_current_section_content() as $addon ) {
            $addon = llms_get_add_on( $addon );
            $this->output_addon( $addon );
        }
        ?>
 
        <?php do_action( 'lifterlms_after_addons' ); ?>
 
    </ul>
    <?php
}
 
/**


Top ↑

Changelog Changelog

Changelog
Version Description
3.5.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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