File manager - Edit - /home/theblueo/tv/wp-content/plugins/sfwd-lms/includes/rest-api/v1/class-ld-rest-sections-controller.php
Back
<?php /** * Sections REST API Endpoint. * * Register interface to handle sections with the REST API. * * @package LearnDash */ if ( ! class_exists( 'LD_REST_Sections_Controller_V1' ) ) { /** * Sections REST Controller. */ class LD_REST_Sections_Controller_V1 extends WP_REST_Controller { /** * Register the routes for the objects of the controller. */ public function register_routes() { $version = '1'; $namespace = LEARNDASH_REST_API_NAMESPACE . '/v' . $version; $base = 'sections'; register_rest_route( $namespace, '/' . $base . '/(?P<id>[\d]+)', array( array( 'methods' => WP_REST_Server::EDITABLE, 'callback' => array( $this, 'update_item' ), 'permission_callback' => array( $this, 'permissions_check' ), 'args' => array( 'id' => array( 'required' => true, 'validate_callback' => function( $param, $request, $key ) { return is_numeric( $param ); }, 'sanitize_callback' => 'absint', ), ), ), ) ); } /** * Check if a given request has access manage the item. * * @param WP_REST_Request $request Full data about the request. * @return WP_Error|bool */ public function permissions_check( $request ) { $params = $request->get_params(); $course_id = $params['id']; return current_user_can( 'edit_post', $course_id ); } /** * Update sections data. * * @param WP_REST_Request $request Full data about the request. * @return WP_Error|WP_REST_Request */ public function update_item( $request ) { $params = $request->get_params(); $course_id = $params['id']; $sections = isset( $params['sections'] ) ? wp_slash( $params['sections'] ) : ''; update_post_meta( $course_id, 'course_sections', $sections ); return new WP_REST_Response( $this->get_sections_data( $course_id ), 200 ); } /** * Get sections data. * * @param int $course_id The course ID. * @return object */ public function get_sections_data( $course_id ) { $sections = get_post_meta( $course_id, 'course_sections', true ); return $sections; } } }
| ver. 1.4 |
Github
|
.
| PHP 7.0.33 | Generation time: 0 |
proxy
|
phpinfo
|
Settings