Addons.php
2 years ago
Admin.php
2 years ago
Ajax.php
1 year ago
Announcements.php
1 year ago
Assets.php
2 years ago
Backend_Page_Trait.php
3 years ago
Course.php
1 year ago
Course_Embed.php
3 years ago
Course_Filter.php
1 year ago
Course_List.php
1 year ago
Course_Settings_Tabs.php
3 years ago
Course_Widget.php
3 years ago
Custom_Validation.php
3 years ago
Dashboard.php
3 years ago
FormHandler.php
2 years ago
Frontend.php
2 years ago
Gutenberg.php
3 years ago
Input.php
3 years ago
Instructor.php
2 years ago
Instructors_List.php
1 year ago
Lesson.php
1 year ago
Options_V2.php
1 year ago
Permalink.php
2 years ago
Post_types.php
2 years ago
Private_Course_Access.php
3 years ago
Q_And_A.php
1 year ago
Question_Answers_List.php
3 years ago
Quiz.php
1 year ago
Quiz_Attempts_List.php
1 year ago
RestAPI.php
2 years ago
Reviews.php
3 years ago
Rewrite_Rules.php
2 years ago
Shortcode.php
1 year ago
Student.php
2 years ago
Students_List.php
3 years ago
Taxonomies.php
3 years ago
Template.php
2 years ago
Theme_Compatibility.php
3 years ago
Tools.php
3 years ago
Tools_V2.php
2 years ago
Tutor.php
2 years ago
TutorEDD.php
2 years ago
Tutor_Base.php
2 years ago
Tutor_Setup.php
2 years ago
Upgrader.php
2 years ago
User.php
2 years ago
Utils.php
1 year ago
Video_Stream.php
3 years ago
WhatsNew.php
2 years ago
Withdraw.php
2 years ago
Withdraw_Requests_List.php
3 years ago
WooCommerce.php
1 year ago
Course_Widget.php
244 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Course Widget Register |
| 4 | * |
| 5 | * @package Tutor |
| 6 | * @author Themeum <support@themeum.com> |
| 7 | * @link https://themeum.com |
| 8 | * @since 1.3.1 |
| 9 | */ |
| 10 | |
| 11 | namespace TUTOR; |
| 12 | |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit; |
| 15 | } |
| 16 | |
| 17 | /** |
| 18 | * Course Widget Class |
| 19 | * |
| 20 | * @since 1.3.1 |
| 21 | */ |
| 22 | class Course_Widget extends \WP_Widget { |
| 23 | |
| 24 | /** |
| 25 | * Constructor |
| 26 | * |
| 27 | * @since 1.3.1 |
| 28 | * @return void |
| 29 | */ |
| 30 | public function __construct() { |
| 31 | parent::__construct( |
| 32 | 'tutor_course_widget', // Base ID. |
| 33 | esc_html__( 'Tutor Course', 'tutor' ), // Name. |
| 34 | array( 'description' => esc_html__( 'Display courses wherever widget support is available.', 'tutor' ) ) // Args. |
| 35 | ); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Front-end display of widget. |
| 40 | * |
| 41 | * @since 1.3.1 |
| 42 | * @see WP_Widget::widget() |
| 43 | * |
| 44 | * @param array $args Widget arguments. |
| 45 | * @param array $instance Saved values from database. |
| 46 | * |
| 47 | * @return void |
| 48 | */ |
| 49 | public function widget( $args, $instance ) { |
| 50 | echo wp_kses( |
| 51 | $args['before_widget'], |
| 52 | array( |
| 53 | 'section' => array( |
| 54 | 'id' => true, |
| 55 | 'class' => true, |
| 56 | ), |
| 57 | 'div' => array( |
| 58 | 'id' => true, |
| 59 | 'class' => true, |
| 60 | ), |
| 61 | ) |
| 62 | ); |
| 63 | if ( ! empty( $instance['title'] ) ) { |
| 64 | echo wp_kses( $args['before_title'], array( 'h2' => array( 'class' => true ) ) ); |
| 65 | echo esc_html( apply_filters( 'widget_title', $instance['title'] ) ); |
| 66 | echo wp_kses( $args['after_title'], array( 'h2' => array() ) ); |
| 67 | } |
| 68 | |
| 69 | $course_post_type = tutor()->course_post_type; |
| 70 | |
| 71 | $form_args = $instance; |
| 72 | unset( $form_args['title'] ); |
| 73 | |
| 74 | $default_args = array( |
| 75 | 'post_type' => $course_post_type, |
| 76 | 'post_status' => 'publish', |
| 77 | |
| 78 | 'id' => '', |
| 79 | 'exclude_ids' => '', |
| 80 | 'category' => '', |
| 81 | |
| 82 | 'orderby' => 'ID', |
| 83 | 'order' => 'DESC', |
| 84 | 'count' => '6', |
| 85 | ); |
| 86 | |
| 87 | $a = array_merge( $default_args, $form_args ); |
| 88 | |
| 89 | if ( ! empty( $a['id'] ) ) { |
| 90 | $ids = (array) explode( ',', $a['id'] ); |
| 91 | $a['post__in'] = $ids; |
| 92 | } |
| 93 | |
| 94 | if ( ! empty( $a['exclude_ids'] ) ) { |
| 95 | $exclude_ids = (array) explode( ',', $a['exclude_ids'] ); |
| 96 | $a['post__not_in'] = $exclude_ids; |
| 97 | } |
| 98 | if ( ! empty( $a['category'] ) ) { |
| 99 | $category = (array) explode( ',', $a['category'] ); |
| 100 | |
| 101 | $a['tax_query'] = array( |
| 102 | array( |
| 103 | 'taxonomy' => 'course-category', |
| 104 | 'field' => 'term_id', |
| 105 | 'terms' => $category, |
| 106 | 'operator' => 'IN', |
| 107 | ), |
| 108 | ); |
| 109 | } |
| 110 | $a['posts_per_page'] = (int) $a['count']; |
| 111 | |
| 112 | wp_reset_query(); |
| 113 | query_posts( $a ); |
| 114 | ob_start(); |
| 115 | tutor_load_template( 'widget.courses' ); |
| 116 | $output = ob_get_clean(); |
| 117 | wp_reset_query(); |
| 118 | |
| 119 | echo wp_kses_post( $output ); |
| 120 | |
| 121 | echo wp_kses( |
| 122 | $args['after_widget'], |
| 123 | array( |
| 124 | 'section' => array(), |
| 125 | 'div' => array(), |
| 126 | ) |
| 127 | ); |
| 128 | } |
| 129 | |
| 130 | /** |
| 131 | * Back-end widget form. |
| 132 | * |
| 133 | * @since 1.3.1 |
| 134 | * @see WP_Widget::form() |
| 135 | * |
| 136 | * @param array $instance Previously saved values from database. |
| 137 | * @return void |
| 138 | */ |
| 139 | public function form( $instance ) { |
| 140 | $title = ! empty( $instance['title'] ) ? $instance['title'] : esc_html__( 'New title', 'tutor' ); |
| 141 | $id = ! empty( $instance['id'] ) ? $instance['id'] : ''; |
| 142 | $exclude_ids = ! empty( $instance['exclude_ids'] ) ? $instance['exclude_ids'] : ''; |
| 143 | $category = ! empty( $instance['category'] ) ? $instance['category'] : ''; |
| 144 | $orderby = ! empty( $instance['orderby'] ) ? $instance['orderby'] : ''; |
| 145 | $order = ! empty( $instance['order'] ) ? $instance['order'] : ''; |
| 146 | $count = ! empty( $instance['count'] ) ? $instance['count'] : '6'; |
| 147 | ?> |
| 148 | <p> |
| 149 | <label for="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>"> |
| 150 | <?php esc_html_e( 'Title', 'tutor' ); ?>: |
| 151 | </label> |
| 152 | <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'title' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'title' ) ); ?>" type="text" value="<?php echo esc_attr( $title ); ?>"> |
| 153 | </p> |
| 154 | |
| 155 | <p> |
| 156 | <label for="<?php echo esc_attr( $this->get_field_id( 'id' ) ); ?>"> |
| 157 | <?php esc_html_e( 'ID', 'tutor' ); ?>: |
| 158 | </label> |
| 159 | <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'id' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'id' ) ); ?>" type="text" value="<?php echo esc_attr( $id ); ?>"> <br /> |
| 160 | <span style="color: #AAAAAA"> |
| 161 | <?php esc_html_e( 'Place single course id or comma (,) separated course ids', 'tutor' ); ?> |
| 162 | </span> |
| 163 | </p> |
| 164 | |
| 165 | <p> |
| 166 | <label for="<?php echo esc_attr( $this->get_field_id( 'exclude_ids' ) ); ?>"><?php esc_attr_e( 'Exclude IDS:', 'tutor' ); ?></label> |
| 167 | <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'exclude_ids' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'exclude_ids' ) ); ?>" type="text" value="<?php echo esc_attr( $exclude_ids ); ?>"> <br /> |
| 168 | <span style="color: #AAAAAA"> |
| 169 | <?php esc_html_e( 'Place comma (,) separated courses ids which you like to exclude from the query', 'tutor' ); ?> |
| 170 | </span> |
| 171 | </p> |
| 172 | |
| 173 | <p> |
| 174 | <label for="<?php echo esc_attr( $this->get_field_id( 'category' ) ); ?>"> |
| 175 | <?php esc_html_e( 'Category', 'tutor' ); ?>: |
| 176 | </label> |
| 177 | <input class="widefat" id="<?php echo esc_attr( $this->get_field_id( 'category' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'category' ) ); ?>" type="text" value="<?php echo esc_attr( $category ); ?>"> <br /> |
| 178 | <span style="color: #AAAAAA"> |
| 179 | <?php esc_html_e( 'Place comma (,) separated category ids', 'tutor' ); ?> |
| 180 | </span> |
| 181 | </p> |
| 182 | |
| 183 | <p> |
| 184 | <label for="<?php echo esc_attr( $this->get_field_id( 'orderby' ) ); ?>"> |
| 185 | <?php esc_html_e( 'OrderBy', 'tutor' ); ?> |
| 186 | </label> |
| 187 | |
| 188 | <select class="widefat" name="<?php echo esc_attr( $this->get_field_name( 'orderby' ) ); ?>" > |
| 189 | <option value="ID" <?php selected( 'ID', $orderby ); ?> >ID</option> |
| 190 | <option value="title" <?php selected( 'title', $orderby ); ?> >title</option> |
| 191 | <option value="rand" <?php selected( 'rand', $orderby ); ?> >rand</option> |
| 192 | <option value="date" <?php selected( 'date', $orderby ); ?> >date</option> |
| 193 | <option value="menu_order" <?php selected( 'menu_order', $orderby ); ?> >menu_order</option> |
| 194 | <option value="post__in" <?php selected( 'post__in', $orderby ); ?> >post__in</option> |
| 195 | </select> <br /> |
| 196 | </p> |
| 197 | |
| 198 | <p> |
| 199 | <label for="<?php echo esc_attr( $this->get_field_id( 'order' ) ); ?>"> |
| 200 | <?php esc_html_e( 'Order', 'tutor' ); ?> |
| 201 | </label> |
| 202 | |
| 203 | <select class="widefat" name="<?php echo esc_attr( $this->get_field_name( 'order' ) ); ?>" > |
| 204 | <option value="DESC" <?php selected( 'DESC', $order ); ?> >DESC</option> |
| 205 | <option value="ASC" <?php selected( 'ASC', $order ); ?> >ASC</option> |
| 206 | </select> <br /> |
| 207 | </p> |
| 208 | |
| 209 | <p> |
| 210 | <label for="<?php echo esc_attr( $this->get_field_id( 'count' ) ); ?>"><?php esc_attr_e( 'Count:', 'tutor' ); ?></label> |
| 211 | <input class="widefat tutor-form-number-verify" id="<?php echo esc_attr( $this->get_field_id( 'count' ) ); ?>" name="<?php echo esc_attr( $this->get_field_name( 'count' ) ); ?>" type="number" value="<?php echo esc_attr( $count ); ?>" min="1"> <br /> |
| 212 | <span style="color: #AAAAAA"> |
| 213 | <?php esc_html_e( 'Total results you like to show', 'tutor' ); ?> |
| 214 | </span> |
| 215 | </p> |
| 216 | |
| 217 | <?php |
| 218 | } |
| 219 | |
| 220 | /** |
| 221 | * Sanitize widget form values as they are saved. |
| 222 | * |
| 223 | * @since 1.3.1 |
| 224 | * @see WP_Widget::update() |
| 225 | * |
| 226 | * @param array $new_instance Values just sent to be saved. |
| 227 | * @param array $old_instance Previously saved values from database. |
| 228 | * |
| 229 | * @return array Updated safe values to be saved. |
| 230 | */ |
| 231 | public function update( $new_instance, $old_instance ) { |
| 232 | $instance = array(); |
| 233 | $instance['title'] = ( ! empty( $new_instance['title'] ) ) ? sanitize_text_field( $new_instance['title'] ) : ''; |
| 234 | $instance['id'] = ( ! empty( $new_instance['id'] ) ) ? sanitize_text_field( $new_instance['id'] ) : ''; |
| 235 | $instance['exclude_ids'] = ( ! empty( $new_instance['exclude_ids'] ) ) ? sanitize_text_field( $new_instance['exclude_ids'] ) : ''; |
| 236 | $instance['category'] = ( ! empty( $new_instance['category'] ) ) ? sanitize_text_field( $new_instance['category'] ) : ''; |
| 237 | $instance['orderby'] = ( ! empty( $new_instance['orderby'] ) ) ? sanitize_text_field( $new_instance['orderby'] ) : ''; |
| 238 | $instance['order'] = ( ! empty( $new_instance['order'] ) ) ? sanitize_text_field( $new_instance['order'] ) : ''; |
| 239 | $instance['count'] = ( ! empty( $new_instance['count'] ) ) ? sanitize_text_field( $new_instance['count'] ) : ''; |
| 240 | |
| 241 | return $instance; |
| 242 | } |
| 243 | } |
| 244 |