model = SettingModel::get_instance(); $this->init_hooks(); } protected function init_hooks() { register_rest_route( YAYMAIL_REST_NAMESPACE, '/settings', [ [ 'methods' => \WP_REST_Server::READABLE, 'callback' => [ $this, 'exec_get_settings' ], 'permission_callback' => [ $this, 'permission_callback' ], ], [ 'methods' => \WP_REST_Server::EDITABLE, 'callback' => [ $this, 'exec_update_settings' ], 'permission_callback' => [ $this, 'permission_callback' ], ], ] ); } public function exec_get_settings( \WP_REST_Request $request ) { return $this->exec( [ $this, 'get_settings' ], $request ); } public function get_settings() { $settings = $this->model::find_all(); return $settings; } public function exec_update_settings( \WP_REST_Request $request ) { return $this->exec( [ $this, 'update_settings' ], $request ); } public function update_settings( \WP_REST_Request $request ) { $data = json_decode( $request->get_param( 'data' ), true ); $settings = is_array( $data ) ? array_map( 'sanitize_text_field', wp_unslash( $data ) ) : []; $settings['custom_css'] = wp_strip_all_tags( isset( $data['custom_css'] ) ? $data['custom_css'] : '' ); $this->model::update( $settings ); return [ 'success' => true, 'data' => $settings, ]; } }