Changeset 9289 for trunk/src/bp-xprofile/bp-xprofile-loader.php
- Timestamp:
- 12/29/2014 10:19:41 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/bp-xprofile-loader.php
r9167 r9289 18 18 * Profile field types 19 19 * 20 * @since BuddyPress (1.5 )20 * @since BuddyPress (1.5.0) 21 21 * @var array 22 22 */ … … 27 27 * 28 28 * @see bp_xprofile_get_visibility_levels() 29 * @since BuddyPress (1.6 )29 * @since BuddyPress (1.6.0) 30 30 */ 31 31 var $visibility_levels = array(); … … 34 34 * Start the xprofile component creation process 35 35 * 36 * @since BuddyPress (1.5 )36 * @since BuddyPress (1.5.0) 37 37 */ 38 38 public function __construct() { … … 79 79 * backwards compatibility. 80 80 * 81 * @since BuddyPress (1.5 )81 * @since BuddyPress (1.5.0) 82 82 */ 83 83 public function setup_globals( $args = array() ) { … … 99 99 } 100 100 101 // Set the support field type ids 101 /** 102 * Filters the supported field type IDs. 103 * 104 * @since BuddyPress (1.1.0) 105 * 106 * @param array $value Array of IDs for the supported field types. 107 */ 102 108 $this->field_types = apply_filters( 'xprofile_field_types', array_keys( bp_xprofile_get_field_types() ) ); 103 109
Note: See TracChangeset
for help on using the changeset viewer.