REST_Author.php
5 years ago
REST_Course.php
5 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
REST_Course_Announcement.php
54 lines
| 1 | <?php |
| 2 | /* |
| 3 | @REST API for course announcements |
| 4 | @author : themeum |
| 5 | */ |
| 6 | |
| 7 | namespace TUTOR; |
| 8 | use WP_REST_Request; |
| 9 | |
| 10 | if(!defined('ABSPATH')) |
| 11 | exit; |
| 12 | |
| 13 | class REST_Course_Announcement { |
| 14 | |
| 15 | use REST_Response; |
| 16 | |
| 17 | private $post_parent; |
| 18 | private $post_type = "tutor_announcements"; |
| 19 | |
| 20 | /* |
| 21 | *require rest request |
| 22 | *return accoucement by course id |
| 23 | */ |
| 24 | public function course_annoucement(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'=> "success", |
| 38 | "message"=> __('Announcement retrieved successfully','tutor'), |
| 39 | 'data'=> $result |
| 40 | ); |
| 41 | |
| 42 | return self::send($response); |
| 43 | } |
| 44 | |
| 45 | $response = array( |
| 46 | 'status_code'=> "not_found", |
| 47 | "message"=> __('Announcement not found for given ID','tutor'), |
| 48 | 'data'=> [] |
| 49 | ); |
| 50 | |
| 51 | return self::send($response); |
| 52 | } |
| 53 | } |
| 54 |