Changeset 13619
- Timestamp:
- 10/24/2023 03:47:44 AM (15 months ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-groups/bp-groups-functions.php
r13525 r13619 4026 4026 4027 4027 /** 4028 * Get single group's path chunks using an array of URLslugs.4028 * Get single Groups item customized path chunks using an array of BP URL default slugs. 4029 4029 * 4030 4030 * @since 12.0.0 4031 4031 * 4032 * @param array $chunks An array of URL slugs. 4033 * @return array An array of BP Rewrites URL arguments. 4032 * @param array $chunks An array of BP URL default slugs. 4033 * @param string $context Whether to get chunks for the 'read', 'create' or 'manage' contexts. 4034 * @return array An associative array containing group's customized path chunks. 4034 4035 */ 4035 4036 function bp_groups_get_path_chunks( $chunks = array(), $context = 'read' ) { -
trunk/src/bp-members/bp-members-functions.php
r13499 r13619 140 140 141 141 /** 142 * Get single member's path chunks using an array of URLslugs.142 * Get single Members item customized path chunks using an array of BP URL default slugs. 143 143 * 144 144 * @since 12.0.0 145 145 * 146 * @param array $chunks An array of URLslugs.147 * @return array An a rray of BP Rewrites URL arguments.146 * @param array $chunks An array of BP URL default slugs. 147 * @return array An associative array containing member's customized path chunks. 148 148 */ 149 149 function bp_members_get_path_chunks( $chunks = array() ) { … … 184 184 185 185 /** 186 * Return the M mbers single item's URL.186 * Return the Members single item's URL. 187 187 * 188 188 * @since 12.0.0
Note: See TracChangeset
for help on using the changeset viewer.