PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.6.9
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.6.9
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / includes / fields / class-field-url.php

class-field-url.php in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.6.9, at includes/fields/class-field-url.php

107 lines 3.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Text Field Class
5 */
6 class WeForms_Form_Field_URL extends WeForms_Form_Field_Text {
7
8 public function __construct() {
9 $this->name = __( 'Website URL', 'weforms' );
10 $this->input_type = 'website_url';
11 $this->icon = 'link';
12 }
13
14 /**
15 * Render the text field
16 *
17 * @param array $field_settings
18 * @param int $form_id
19 *
20 * @return void
21 */
22 public function render( $field_settings, $form_id ) {
23 $value = $field_settings['default']; ?>
24 <li <?php $this->print_list_attributes( $field_settings ); ?>>
25 <?php $this->print_label( $field_settings, $form_id ); ?>
26
27 <div class="wpuf-fields">
28 <input
29 title = "<?php echo esc_attr__( 'The URL must contain a protocol i.e. http://example.com', 'weforms' ); ?>"
30 id = "<?php echo esc_attr( $field_settings['name'] ) . '_' . esc_attr( $form_id ); ?>"
31 type = "url" class="url <?php echo ' wpuf_'. esc_attr( $field_settings['name'] ).'_'. esc_attr( $form_id ); ?>"
32 data-duplicate = "<?php echo esc_attr( $field_settings['duplicate'] ) ? esc_attr( $field_settings['duplicate'] ) : 'no'; ?>"
33 data-required = "<?php echo esc_attr( $field_settings['required'] ) ?>"
34 data-type = "url"
35 name = "<?php echo esc_attr( $field_settings['name'] ); ?>"
36 placeholder = "<?php echo esc_attr( $field_settings['placeholder'] ); ?>"
37 value = "<?php echo esc_attr( $value ); ?>" size="<?php echo esc_attr( $field_settings['size'] ); ?>"
38 autocomplete = "url"
39 />
40 <?php $this->help_text( $field_settings ); ?>
41 </div>
42
43 </li>
44 <?php
45 }
46
47 /**
48 * Get field options setting
49 *
50 * @return array
51 */
52 public function get_options_settings() {
53 $default_options = $this->get_default_option_settings();
54 $default_text_options = $this->get_default_text_option_settings( false ); // word_restriction = false
55 $check_duplicate = [
56 [
57 'name' => 'duplicate',
58 'title' => 'No Duplicates',
59 'type' => 'checkbox',
60 'is_single_opt' => true,
61 'options' => [
62 'no' => __( 'Unique Values Only', 'weforms' ),
63 ],
64 'default' => '',
65 'section' => 'advanced',
66 'priority' => 23,
67 'help_text' => __( 'Select this option to limit user input to unique values only. This will require that a value entered in a field does not currently exist in the entry database for that field.', 'weforms' ),
68 ],
69 ];
70
71 return array_merge( $default_options, $default_text_options, $check_duplicate );
72 }
73
74 /**
75 * Get the field props
76 *
77 * @return array
78 */
79 public function get_field_props() {
80 $defaults = $this->default_attributes();
81 $defaults['duplicate'] = '';
82
83 return $defaults;
84 }
85
86 /**
87 * Prepare entry
88 *
89 * @param $field
90 *
91 * @return mixed
92 */
93 public function prepare_entry( $field, $args = [] ) {
94 if( empty( $_POST[ '_wpnonce' ] ) ) {
95 wp_send_json_error( __( 'Unauthorized operation', 'weforms' ) );
96 }
97
98 if ( ! wp_verify_nonce( sanitize_text_field( wp_unslash( $_POST['_wpnonce'] ) ), 'wpuf_form_add' ) ) {
99 wp_send_json_error( __( 'Unauthorized operation', 'weforms' ) );
100 }
101
102 $args = ! empty( $args ) ? $args : weforms_clean( $_POST );
103
104 return esc_url( trim( $args[$field['name']] ) );
105 }
106 }
107