- 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-textbox.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 * Textbox 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_Textbox extends BP_XProfile_Field_Type { … … 20 20 * Constructor for the textbox field type 21 21 * 22 * @since BuddyPress (2.0.0)22 * @since 2.0.0 23 23 */ 24 24 public function __construct() { … … 33 33 * Fires inside __construct() method for BP_XProfile_Field_Type_Textbox class. 34 34 * 35 * @since BuddyPress (2.0.0)35 * @since 2.0.0 36 36 * 37 37 * @param BP_XProfile_Field_Type_Textbox $this Current instance of … … 47 47 * 48 48 * @param array $raw_properties Optional key/value array of {@link http://dev.w3.org/html5/markup/input.text.html permitted attributes} that you want to add. 49 * @since BuddyPress (2.0.0)49 * @since 2.0.0 50 50 */ 51 51 public function edit_field_html( array $raw_properties = array() ) { … … 85 85 * 86 86 * @param array $raw_properties Optional key/value array of permitted attributes that you want to add. 87 * @since BuddyPress (2.0.0)87 * @since 2.0.0 88 88 */ 89 89 public function admin_field_html( array $raw_properties = array() ) { … … 104 104 * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen. 105 105 * @param string $control_type Optional. HTML input type used to render the current field's child options. 106 * @since BuddyPress (2.0.0)106 * @since 2.0.0 107 107 */ 108 108 public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {}
Note: See TracChangeset
for help on using the changeset viewer.