### Method: LearnDash_Setup_Wizard::install() Source: https://developers.learndash.com/files/includes_class-ld-setup-wizard-php Installs a plugin as part of the setup wizard process. ```APIDOC ## Method: LearnDash_Setup_Wizard::install() ### Description Install a plugin ### @since 4.0.0 ### @package LearnDash ### Source Files includes/class-ld-setup-wizard.php ``` -------------------------------- ### LearnDash_Setup_Wizard Class Overview Source: https://developers.learndash.com/class/learndash_setup_wizard Overview of the LearnDash Setup Wizard class, responsible for guiding users through the initial setup process. ```APIDOC ## Class: LearnDash_Setup_Wizard ### Description Setup wizard class for LearnDash. ### Namespace global ### @package LearnDash ``` -------------------------------- ### Example usage for learndash-all-infobar-before Source: https://developers.learndash.com/hook/learndash-all-infobar-before Implementation example for the action hook. ```php current_tab} Hook Source: https://developers.learndash.com/hook/learndash_addon_display_rows_this-current_tab Example of how to hook into the learndash_addon_display_rows_{$this->current_tab} action. This example hooks into the 'learndash' tab. Ensure you consult a developer for complex implementations. ```php current_tab} action. */ add_action( 'learndash_addon_display_rows_learndash', function() { // Add your custom code here } ); ``` -------------------------------- ### LearnDash_Setup_Wizard::create_profile_page Source: https://developers.learndash.com/method/learndash_setup_wizard/create_profile_page Creates the profile page during the completion of the LearnDash Setup Wizard process. ```APIDOC ## LearnDash_Setup_Wizard::create_profile_page ### Description Creates the profile page during the completion of the LearnDash Setup Wizard process. ### Source File: includes/class-ld-setup-wizard.php ### Return (void) ### Changelog | Version | Description | | --- | --- | | 4.4.1 | Introduced. | ``` -------------------------------- ### Example Usage Source: https://developers.learndash.com/hook/learndash_settings_page_inside_form_bottom Implementation example for attaching a function to the hook using add_action. ```php $widget_title ) ); }; ``` -------------------------------- ### LDLMS_Base_Answer_Type::setup() Source: https://developers.learndash.com/files/includes_classes_answer-types_class-ldlms-base-answer-type-php Adds necessary hooks and calls other setup actions. ```APIDOC ## LDLMS_Base_Answer_Type::setup() ### Description Add necessary hooks, call other setup actions. ### Method Not specified (likely a class method) ### Endpoint Not applicable (class method) ### Parameters None specified ### Request Example None specified ### Response None specified ``` -------------------------------- ### learndash_get_lesson_topic_paged_values() Source: https://developers.learndash.com/files/includes_course_ld-course-functions-php/page/2 Gets the lesson topic pagination values from the HTTP GET global array. ```APIDOC ## learndash_get_lesson_topic_paged_values() ### Description Gets the lesson topic pagination values from the HTTP GET global array. ### Method FUNCTION ### Endpoint N/A ### @since 3.0.0 ### @package LearnDash / Course ### Source Files includes/course/ld-course-functions.php ```