BP_XProfile_Field_Type_URL
URL xprofile field type.
Description
Source
File: bp-xprofile/classes/class-bp-xprofile-field-type-url.php
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | class BP_XProfile_Field_Type_URL extends BP_XProfile_Field_Type { /** * Constructor for the URL field type * * @since BuddyPress 2.1.0 */ public function __construct() { parent::__construct(); $this ->category = __( 'Single Fields' , 'buddyboss' ); $this ->name = __( 'Website' , 'buddyboss' ); $this ->set_format( '_^(?:(?:https?|ftp)://)(?:\S+(?::\S*)?@)?(?:(?!10(?:\.\d{1,3}){3})(?!127(?:\.\d{1,3}){3})(?!169\.254(?:\.\d{1,3}){2})(?!192\.168(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\x{00a1}-\x{ffff}0-9]+-?)*[a-z\x{00a1}-\x{ffff}0-9]+)(?:\.(?:[a-z\x{00a1}-\x{ffff}0-9]+-?)*[a-z\x{00a1}-\x{ffff}0-9]+)*(?:\.(?:[a-z\x{00a1}-\x{ffff}]{2,})))(?::\d{2,5})?(?:/[^\s]*)?$_iuS' , 'replace' ); /** * Fires inside __construct() method for BP_XProfile_Field_Type_URL class. * * @since BuddyPress 2.0.0 * * @param BP_XProfile_Field_Type_URL $this Current instance of * the field type URL. */ do_action( 'bp_xprofile_field_type_url' , $this ); } /** * Output the edit field HTML for this field type. * * Must be used inside the {@link bp_profile_fields()} template loop. * * @since BuddyPress 2.1.0 * * @param array $raw_properties Optional key/value array of * {@link http://dev.w3.org/html5/markup/input.number.html permitted attributes} * that you want to add. */ public function edit_field_html( array $raw_properties = array () ) { // `user_id` is a special optional parameter that certain other // fields types pass to {@link bp_the_profile_field_options()}. if ( isset( $raw_properties [ 'user_id' ] ) ) { unset( $raw_properties [ 'user_id' ] ); } $r = bp_parse_args( $raw_properties , array ( 'type' => 'text' , 'inputmode' => 'url' , 'value' => esc_url( bp_get_the_profile_field_edit_value() ), ) ); ?> <legend id= "<?php bp_the_profile_field_input_name(); ?>-1" > <?php bp_the_profile_field_name(); ?> <?php if ( bp_is_register_page() ) : ?> <?php bp_the_profile_field_optional_label(); ?> <?php else : ?> <?php bp_the_profile_field_required_label(); ?> <?php endif ; ?> </legend> <?php if ( bp_get_the_profile_field_description() ) : ?> <p class = "description" id= "<?php bp_the_profile_field_input_name(); ?>-3" ><?php bp_the_profile_field_description(); ?></p> <?php endif ; ?> <?php /** This action is documented in bp-xprofile/bp-xprofile-classes */ do_action( bp_get_the_profile_field_errors_action() ); ?> <input <?php echo $this ->get_edit_field_html_elements( $r ); ?> aria-labelledby= "<?php bp_the_profile_field_input_name(); ?>-1" aria-describedby= "<?php bp_the_profile_field_input_name(); ?>-3" > <?php } /** * Output HTML for this field type on the wp-admin Profile Fields screen. * * Must be used inside the {@link bp_profile_fields()} template loop. * * @since BuddyPress 2.1.0 * * @param array $raw_properties Optional key/value array of permitted * attributes that you want to add. */ public function admin_field_html( array $raw_properties = array () ) { $r = bp_parse_args( $raw_properties , array ( 'type' => 'url' ) ); ?> <label for = "<?php bp_the_profile_field_input_name(); ?>" class = "screen-reader-text" ><?php /* translators: accessibility text */ esc_html_e( 'Website' , 'buddyboss' ); ?></label> <input <?php echo $this ->get_edit_field_html_elements( $r ); ?>> <?php } /** * This method usually outputs HTML for this field type's children options * on the wp-admin Profile Fields "Add Field" and "Edit Field" screens, but * for this field type, we don't want it, so it's stubbed out. * * @since BuddyPress 2.1.0 * * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen. * @param string $control_type Optional. HTML input type used to render the current * field's child options. */ public function admin_new_field_html( BP_XProfile_Field $current_field , $control_type = '' ) {} /** * Modify submitted URL values before validation. * * The URL validation regex requires a http(s) protocol, so that all * values saved in the database are fully-formed URLs. However, we * still want to allow users to enter URLs without a protocol, for a * better user experience. So we catch submitted URL values, and if * the protocol is missing, we prepend 'http://' before passing to * is_valid(). * * @since BuddyPress 2.1.0 * @since BuddyPress 2.4.0 Added the `$field_id` parameter. * * @param string $submitted_value Raw value submitted by the user. * @param string|int $field_id Optional. ID of the field. * @return string */ public static function pre_validate_filter( $submitted_value = '' , $field_id = '' ) { // Allow empty URL values. if ( empty ( $submitted_value ) ) { return '' ; } // Run some checks on the submitted value. if ( false === strpos ( $submitted_value , ':' ) && substr ( $submitted_value , 0, 1 ) !== '/' && substr ( $submitted_value , 0, 1 ) !== '#' && ! preg_match( '/^[a-z0-9-]+?\.php/i' , $submitted_value ) ) { } return $submitted_value ; } /** * Format URL values for display. * * @since BuddyPress 2.1.0 * @since BuddyPress 2.4.0 Added the `$field_id` parameter. * @since BuddyBoss 1.0.0 * Added target="_blank" attribute to anchor tag and consequently added noopener to rel attribute * * @param string $field_value The URL value, as saved in the database. * @param string|int $field_id Optional. ID of the field. * @return string URL converted to a link. */ public static function display_filter( $field_value , $field_id = '' ) { $link = strip_tags ( $field_value ); $no_scheme = preg_replace( '#^https?://#' , '' , rtrim( $link , '/' ) ); $url_text = str_replace ( $link , $no_scheme , $field_value ); return '<a href="' . esc_url( $field_value ) . '" rel="nofollow noopener" target="_blank">' . esc_html( $url_text ) . '</a>' ; } } |
Changelog
Version | Description |
---|---|
BuddyPress 2.1.0 | Introduced. |
Methods
- __construct — Constructor for the URL field type
- admin_field_html — Output HTML for this field type on the wp-admin Profile Fields screen.
- admin_new_field_html — This method usually outputs HTML for this field type's children options on the wp-admin Profile Fields "Add Field" and "Edit Field" screens, but for this field type, we don't want it, so it's stubbed out.
- display_filter — Format URL values for display.
- edit_field_html — Output the edit field HTML for this field type.
- pre_validate_filter — Modify submitted URL values before validation.
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.