Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/28/2019 08:38:00 PM (5 years ago)
Author:
imath
Message:

Prepare BuddyPress to welcome the BP REST API

  • Add a grunt tasks to import the master branch of the BP REST API into the BuddyPress /build directory.
  • Add some other grunt tasks to move each BP REST Controller class into their corresponding component classes directory.
  • Add the needed mechanism to make sure activating the BP REST API plugin will take over the BP REST API in BuddyPress core so that it is possible to iterate/fix bugs from the BP REST API GitHub repository.
  • Make sure the buddypress.pot is generated once the BP REST API has been imported.
  • Update the BuddyPress class autoloader to manage the loading of the BP REST API Controllers.
  • Add a new method rest_api_init() to the BP Component API to register the BP REST Controllers from their belonging component classes.

Props boonebgorges & espellcaste

See #7156

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-xprofile/classes/class-bp-xprofile-component.php

    r11929 r12451  
    490490        return $wp_admin_nav;
    491491    }
     492
     493    /**
     494     * Init the BP REST API.
     495     *
     496     * @since 5.0.0
     497     */
     498    public function rest_api_init() {
     499        $controller = new BP_REST_XProfile_Fields_Endpoint();
     500        $controller->register_routes();
     501
     502        $controller = new BP_REST_XProfile_Field_Groups_Endpoint();
     503        $controller->register_routes();
     504
     505        $controller = new BP_REST_XProfile_Data_Endpoint();
     506        $controller->register_routes();
     507
     508        parent::rest_api_init();
     509    }
    492510}
Note: See TracChangeset for help on using the changeset viewer.