Changeset 13993
- Timestamp:
- 08/01/2024 10:29:23 AM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-members/classes/class-bp-members-invitations-component.php
r13877 r13993 10 10 // Exit if accessed directly. 11 11 defined( 'ABSPATH' ) || exit; 12 13 /** 14 * BuddyPress Invitations Component Class. 15 * 16 * Invitations are actually a deactivable feature of the Members component. To make sure this feature 17 * page slugs can be customized using the BP Rewrites API, it was decided to extend the `BP_Component` 18 * class to benefit from the improvements added to it during 12.0.0 into the "rewrite" area. 19 * @see `BP_Component::register_nav()`. 20 * 21 * @since 12.0.0 22 */ 12 23 class BP_Members_Invitations_Component extends BP_Component { 13 24 14 function __construct() { 25 /** 26 * Start the invitations feature creation process. 27 * 28 * @since 12.0.0 29 */ 30 public function __construct() { 15 31 parent::start( 16 32 'members_invitations',
Note: See TracChangeset
for help on using the changeset viewer.