- 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-selectbox.php
r9819 r10142 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 13 13 * Selectbox 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_Selectbox extends BP_XProfile_Field_Type { … … 20 20 * Constructor for the selectbox 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_Selectbox class. 36 36 * 37 * @since BuddyPress (2.0.0)37 * @since 2.0.0 38 38 * 39 39 * @param BP_XProfile_Field_Type_Selectbox $this Current instance of … … 49 49 * 50 50 * @param array $raw_properties Optional key/value array of {@link http://dev.w3.org/html5/markup/select.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() ) { … … 93 93 * 94 94 * @param array $args Optional. The arguments passed to {@link bp_the_profile_field_options()}. 95 * @since BuddyPress (2.0.0)95 * @since 2.0.0 96 96 */ 97 97 public function edit_field_options_html( array $args = array() ) { … … 136 136 * Filters the HTML output for options in a select input. 137 137 * 138 * @since BuddyPress (1.1.0)138 * @since 1.1.0 139 139 * 140 140 * @param string $value Option tag for current value being rendered. … … 156 156 * 157 157 * @param array $raw_properties Optional key/value array of permitted attributes that you want to add. 158 * @since BuddyPress (2.0.0)158 * @since 2.0.0 159 159 */ 160 160 public function admin_field_html( array $raw_properties = array() ) { … … 175 175 * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen. 176 176 * @param string $control_type Optional. HTML input type used to render the current field's child options. 177 * @since BuddyPress (2.0.0)177 * @since 2.0.0 178 178 */ 179 179 public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {
Note: See TracChangeset
for help on using the changeset viewer.