groups_avatar_upload_dir( int $group_id )
Generate the avatar upload directory path for a given group.
Description
Parameters
- $group_id
-
(Optional) ID of the group. Default: ID of the current group.
Return
(string)
Source
File: bp-groups/bp-groups-functions.php
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 | function groups_avatar_upload_dir( $group_id = 0 ) { if ( empty ( $group_id ) ) { $group_id = bp_get_current_group_id(); } $directory = 'group-avatars' ; $path = bp_core_avatar_upload_path() . '/' . $directory . '/' . $group_id ; $newbdir = $path ; $newurl = bp_core_avatar_url() . '/' . $directory . '/' . $group_id ; $newburl = $newurl ; $newsubdir = '/' . $directory . '/' . $group_id ; /** * Filters the avatar upload directory path for a given group. * * @since BuddyPress 1.1.0 * * @param array $value Array of parts related to the groups avatar upload directory. */ return apply_filters( 'groups_avatar_upload_dir' , array ( 'path' => $path , 'url' => $newurl , 'subdir' => $newsubdir , 'basedir' => $newbdir , 'baseurl' => $newburl , 'error' => false ) ); } |
Changelog
Version | Description |
---|---|
BuddyPress 1.1.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.