Changeset 14042
- Timestamp:
- 10/09/2024 04:36:10 AM (4 weeks ago)
- Location:
- trunk
- Files:
-
- 5 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/docs/developer/README.md
r14038 r14042 13 13 3. [BuddyPress Theme Compatibility](./theme-compat/README.md) 14 14 4. [BuddyPress execution contexts](./execution-contexts/README.md) 15 5. [BuddyPress REST API (v2)](./execution-contexts/rest-api/README.md) -
trunk/docs/developer/execution-contexts/README.md
r14038 r14042 5 5 1. Theme/front-end 6 6 2. [Ajax](./ajax.md) 7 3. REST API7 3. [REST API](./rest-api/README.md) 8 8 4. Administration -
trunk/docs/developer/manifest.json
r14038 r14042 73 73 }, 74 74 { 75 "title": "BuddyPress REST API", 76 "slug": "bp-rest-api", 77 "markdown_source": "../developer/execution-contexts/rest-api/README.md", 78 "parent": null 79 }, 80 { 81 "title": "BP REST API Reference", 82 "slug": "bp-rest-api-reference", 83 "markdown_source": "../developer/execution-contexts/rest-api/reference.md", 84 "parent": "bp-rest-api" 85 }, 86 { 87 "title": "Components REST API routes", 88 "slug": "bp-rest-api-components", 89 "markdown_source": "../developer/execution-contexts/rest-api/components.md", 90 "parent": "bp-rest-api-reference" 91 }, 92 { 93 "title": "Members REST API routes", 94 "slug": "bp-rest-api-members", 95 "markdown_source": "../developer/execution-contexts/rest-api/members.md", 96 "parent": "bp-rest-api-reference" 97 }, 98 { 75 99 "title": "BuddyPress Functions", 76 100 "slug": "bp-functions", -
trunk/src/bp-core/classes/class-bp-core-components-rest-controller.php
r14028 r14042 432 432 'title' => $data['title'], 433 433 'description' => $data['description'], 434 'features' => array(),434 'features' => null, 435 435 ); 436 436 … … 476 476 break; 477 477 default: 478 $features = array();478 $features = null; 479 479 break; 480 480 } … … 553 553 ), 554 554 'features' => array( 555 'context' => array( 'view', 'edit' ), 555 556 'description' => __( 'Information about active features for the component.', 'buddypress' ), 556 'type' => 'array',557 ' context' => array( 'view', 'edit'),558 'default' => array(),557 'type' => array( 'object', 'null' ), 558 'properties' => array(), 559 'default' => null, 559 560 ), 560 561 ), -
trunk/src/bp-members/classes/class-bp-members-rest-controller.php
r14034 r14042 1119 1119 ), 1120 1120 ), 1121 'format' => 'date-time',1122 1121 'context' => array( 'view', 'edit' ), 1123 1122 'readonly' => true,
Note: See TracChangeset
for help on using the changeset viewer.