widget_cssclass = 'learnpress widget_course_info'; $this->widget_description = esc_html__( 'Display the Course Infomation', 'learnpress' ); $this->widget_id = 'learnpress_widget_course_info'; $this->widget_name = esc_html__( 'LearnPress - Course Info', 'learnpress' ); $this->settings = array( 'title' => array( 'label' => esc_html__( 'Title', 'learnpress' ), 'type' => 'text', 'std' => esc_html__( 'Course Info', 'learnpress' ), ), 'course_id' => array( 'label' => esc_html__( 'Select Course', 'learnpress' ), 'type' => 'autocomplete', 'post_type' => LP_COURSE_CPT, 'std' => '', ), 'css_class' => array( 'label' => esc_html__( 'CSS Class', 'learnpress' ), 'type' => 'text', 'std' => '', ), ); parent::__construct(); } public function lp_rest_api_content( $instance, $params ) { $instance['css_class'] = $instance['css_class'] ?? ''; if ( ! empty( $instance['course_id'] ) ) { $course = learn_press_get_course( $instance['course_id'] ); if ( $course ) { return learn_press_get_template_content( 'widgets/course-info.php', array( 'course' => $course, 'instance' => $instance, ) ); } } return new WP_Error( 'no_params', esc_html__( 'Error: Please select a Course.', 'learnpress' ) ); } } }