- Timestamp:
- 09/25/2015 02:19:11 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-radiobutton.php
r9819 r10142 13 13 * Radio button xprofile field type. 14 14 * 15 * @since BuddyPress (2.0.0)15 * @since 2.0.0 16 16 */ 17 17 class BP_XProfile_Field_Type_Radiobutton extends BP_XProfile_Field_Type { … … 20 20 * Constructor for the radio button field type 21 21 * 22 * @since BuddyPress (2.0.0)22 * @since 2.0.0 23 23 */ 24 24 public function __construct() { … … 35 35 * Fires inside __construct() method for BP_XProfile_Field_Type_Radiobutton class. 36 36 * 37 * @since BuddyPress (2.0.0)37 * @since 2.0.0 38 38 * 39 39 * @param BP_XProfile_Field_Type_Radiobutton $this Current instance of … … 49 49 * 50 50 * @param array $raw_properties Optional key/value array of {@link http://dev.w3.org/html5/markup/input.radio.html permitted attributes} that you want to add. 51 * @since BuddyPress (2.0.0)51 * @since 2.0.0 52 52 */ 53 53 public function edit_field_html( array $raw_properties = array() ) { … … 103 103 * 104 104 * @param array $args Optional. The arguments passed to {@link bp_the_profile_field_options()}. 105 * @since BuddyPress (2.0.0)105 * @since 2.0.0 106 106 */ 107 107 public function edit_field_options_html( array $args = array() ) { … … 141 141 * Filters the HTML output for an individual field options radio button. 142 142 * 143 * @since BuddyPress (1.1.0)143 * @since 1.1.0 144 144 * 145 145 * @param string $new_html Label and radio input field. … … 161 161 * 162 162 * @param array $raw_properties Optional key/value array of permitted attributes that you want to add. 163 * @since BuddyPress (2.0.0)163 * @since 2.0.0 164 164 */ 165 165 public function admin_field_html( array $raw_properties = array() ) { … … 184 184 * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen. 185 185 * @param string $control_type Optional. HTML input type used to render the current field's child options. 186 * @since BuddyPress (2.0.0)186 * @since 2.0.0 187 187 */ 188 188 public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.