123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- class WP_REST_Test_Configurable_Controller extends WP_REST_Controller {
-
- protected $test_schema;
-
- public function __construct( $test_schema ) {
- $this->test_schema = $test_schema;
- }
-
- public function get_test_schema() {
- return $this->test_schema;
- }
-
- public function get_item_schema() {
- return $this->add_additional_fields_schema( $this->get_test_schema() );
- }
- }
|