- 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-url.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 * URL xprofile field type. 14 14 * 15 * @since BuddyPress (2.1.0)15 * @since 2.1.0 16 16 */ 17 17 class BP_XProfile_Field_Type_URL extends BP_XProfile_Field_Type { … … 20 20 * Constructor for the URL field type 21 21 * 22 * @since BuddyPress (2.1.0)22 * @since 2.1.0 23 23 */ 24 24 public function __construct() { … … 33 33 * Fires inside __construct() method for BP_XProfile_Field_Type_URL class. 34 34 * 35 * @since BuddyPress (2.0.0)35 * @since 2.0.0 36 36 * 37 37 * @param BP_XProfile_Field_Type_URL $this Current instance of … … 49 49 * {@link http://dev.w3.org/html5/markup/input.number.html permitted attributes} 50 50 * that you want to add. 51 * @since BuddyPress (2.1.0)51 * @since 2.1.0 52 52 */ 53 53 public function edit_field_html( array $raw_properties = array() ) { … … 89 89 * @param array $raw_properties Optional key/value array of permitted 90 90 * attributes that you want to add. 91 * @since BuddyPress (2.1.0)91 * @since 2.1.0 92 92 */ 93 93 public function admin_field_html( array $raw_properties = array() ) { … … 109 109 * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen. 110 110 * @param string $control_type Optional. HTML input type used to render the current field's child options. 111 * @since BuddyPress (2.1.0)111 * @since 2.1.0 112 112 */ 113 113 public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {} … … 123 123 * is_valid(). 124 124 * 125 * @since BuddyPress (2.1.0)125 * @since 2.1.0 126 126 * 127 127 * @param string $submitted_value Raw value submitted by the user. … … 150 150 * Format URL values for display. 151 151 * 152 * @since BuddyPress (2.1.0)152 * @since 2.1.0 153 153 * 154 154 * @param string $field_value The URL value, as saved in the database.
Note: See TracChangeset
for help on using the changeset viewer.