# learnpress/4.1.6.9/inc/jwt/rest-api/version1/class-lp-rest-controller.php

LearnPress – WordPress LMS Plugin for Create and Sell Online Courses, version 4.1.6.9. 36 lines.

- Page: https://pluginprobe.com/plugins/learnpress/4.1.6.9/code/inc/jwt/rest-api/version1/class-lp-rest-controller.php
- Raw: https://pluginprobe.com/plugins/learnpress/4.1.6.9/raw/inc/jwt/rest-api/version1/class-lp-rest-controller.php
- Modified: 2022-07-27T02:27:30+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/learnpress/4.1.6.9/code/inc/jwt/rest-api/version1/class-lp-rest-controller.php#L10-L20`.

```php
<?php
abstract class LP_REST_Jwt_Controller extends WP_REST_Controller {
	protected $namespace = 'learnpress/v1';

	protected $rest_base = '';

	private $_fields = null;

	private $_request = null;

	protected function add_additional_fields_schema( $schema ) {
		if ( empty( $schema['title'] ) ) {
			return $schema;
		}

		/**
		 * Can't use $this->get_object_type otherwise we cause an inf loop.
		 */
		$object_type = $schema['title'];

		$additional_fields = $this->get_additional_fields( $object_type );

		foreach ( $additional_fields as $field_name => $field_options ) {
			if ( ! $field_options['schema'] ) {
				continue;
			}

			$schema['properties'][ $field_name ] = $field_options['schema'];
		}

		$schema['properties'] = apply_filters( 'lp_jwt_rest_' . $object_type . '_schema', $schema['properties'] );

		return $schema;
	}
}

```
