REST_Author.php
5 years ago
REST_Course.php
4 years ago
REST_Course_Announcement.php
5 years ago
REST_Lesson.php
5 years ago
REST_Quiz.php
5 years ago
REST_Rating.php
5 years ago
REST_Response.php
5 years ago
REST_Topic.php
5 years ago
RestAuth.php
2 years ago
REST_Topic.php
53 lines
| 1 | <?php |
| 2 | /* |
| 3 | @REST API for course topics |
| 4 | @author : themeum |
| 5 | */ |
| 6 | |
| 7 | namespace TUTOR; |
| 8 | use WP_REST_Request; |
| 9 | use WP_Query; |
| 10 | |
| 11 | if(!defined('ABSPATH')) |
| 12 | exit; |
| 13 | |
| 14 | class REST_Topic { |
| 15 | use REST_Response; |
| 16 | |
| 17 | private $post_parent; |
| 18 | private $post_type = "topics"; |
| 19 | |
| 20 | /* |
| 21 | *require rest request |
| 22 | *return topic by course id |
| 23 | */ |
| 24 | public function course_topic(WP_REST_Request $request) { |
| 25 | $this->post_parent = $request->get_param('id'); |
| 26 | |
| 27 | global $wpdb; |
| 28 | |
| 29 | $table = $wpdb->prefix."posts"; |
| 30 | |
| 31 | $result = $wpdb->get_results( |
| 32 | $wpdb->prepare("SELECT ID, post_title, post_content, post_name FROM $table WHERE post_type = %s AND post_parent = %d", $this->post_type, $this->post_parent) |
| 33 | ); |
| 34 | |
| 35 | if (count($result)>0) { |
| 36 | $response = array( |
| 37 | 'status_code'=> "get_topic", |
| 38 | "message"=> __('Topic retrieved successfully','tutor'), |
| 39 | 'data'=> $result |
| 40 | ); |
| 41 | |
| 42 | return self::send($response); |
| 43 | } |
| 44 | $response = array( |
| 45 | 'status_code'=> "not_found", |
| 46 | "message"=> __('Topic not found for given ID','tutor'), |
| 47 | 'data'=> [] |
| 48 | ); |
| 49 | |
| 50 | return self::send($response); |
| 51 | } |
| 52 | } |
| 53 |