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)
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 } /** |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.5.0 | Introduced. |