isRequired ) { $this->failed_validation = true; $this->validation_message = empty( $this->errorMessage ) ? esc_html__( 'This field is required.', 'gravityforms' ) : $this->errorMessage; } } if ( ! empty( $value ) && ! GFCommon::is_valid_url( $value ) ) { $this->failed_validation = true; $this->validation_message = empty( $this->errorMessage ) ? esc_html__( 'Please enter a valid Website URL (e.g. https://gravityforms.com).', 'gravityforms' ) : $this->errorMessage; } } public function get_field_input( $form, $value = '', $entry = null ) { $is_entry_detail = $this->is_entry_detail(); $is_form_editor = $this->is_form_editor(); $form_id = $form['id']; $id = intval( $this->id ); $field_id = $is_entry_detail || $is_form_editor || $form_id == 0 ? "input_$id" : 'input_' . $form_id . "_$id"; $size = $this->size; $disabled_text = $is_form_editor ? "disabled='disabled'" : ''; $class_suffix = $is_entry_detail ? '_admin' : ''; $class = $size . $class_suffix; $class = esc_attr( $class ); $is_html5 = RGFormsModel::is_html5_enabled(); $html_input_type = $is_html5 ? 'url' : 'text'; $placeholder_attribute = $this->get_field_placeholder_attribute(); $required_attribute = $this->isRequired ? 'aria-required="true"' : ''; $invalid_attribute = $this->failed_validation ? 'aria-invalid="true"' : 'aria-invalid="false"'; $aria_describedby = $this->get_aria_describedby(); $tabindex = $this->get_tabindex(); $value = esc_attr( $value ); $class = esc_attr( $class ); return "
"; } public function get_value_entry_detail( $value, $currency = '', $use_text = false, $format = 'html', $media = 'screen' ) { $safe_value = esc_url( $value ); return GFCommon::is_valid_url( $value ) && $format == 'html' ? "$safe_value" : $safe_value; } public function get_value_save_entry( $value, $form, $input_name, $lead_id, $lead ) { if ( empty( $value ) || in_array( $value, array( 'http://', 'https://' ) ) ) { return ''; } $value = filter_var( $value, FILTER_VALIDATE_URL ); return $value ? $value : ''; } // # FIELD FILTER UI HELPERS --------------------------------------------------------------------------------------- /** * Returns the filter operators for the current field. * * @since 2.4 * * @return array */ public function get_filter_operators() { $operators = parent::get_filter_operators(); $operators[] = 'contains'; return $operators; } } GF_Fields::register( new GF_Field_Website() );