- Timestamp:
- 04/28/2018 01:32:52 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-templates/bp-nouveau/includes/customizer.php
r11899 r12008 28 28 ) ); 29 29 30 /** 31 * Filters the BuddyPress Nouveau customizer sections and their arguments. 32 * 33 * @since 3.0.0 34 * 35 * @param array $value Array of Customizer sections. 36 */ 30 37 $sections = apply_filters( 'bp_nouveau_customizer_sections', array( 31 38 'bp_nouveau_general_settings' => array( … … 66 73 } 67 74 75 /** 76 * Filters the BuddyPress Nouveau customizer settings and their arguments. 77 * 78 * @since 3.0.0 79 * 80 * @param array $value Array of Customizer settings. 81 */ 68 82 $settings = apply_filters( 'bp_nouveau_customizer_settings', array( 69 83 'bp_nouveau_appearance[avatar_style]' => array( … … 208 222 } 209 223 224 /** 225 * Filters the BuddyPress Nouveau customizer controls and their arguments. 226 * 227 * @since 3.0.0 228 * 229 * @param array $value Array of Customizer controls. 230 */ 210 231 $controls = apply_filters( 'bp_nouveau_customizer_controls', array( 211 232 'bp_site_avatars' => array( … … 350 371 ); 351 372 373 /** 374 * Fires after Nouveau enqueues its required javascript. 375 * 376 * @since 3.0.0 377 */ 352 378 do_action( 'bp_nouveau_customizer_enqueue_scripts' ); 353 379 }
Note: See TracChangeset
for help on using the changeset viewer.