PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.1.1
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.1.1
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.1.1, at includes/fields/class-field-url.php

78 lines 2.2 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 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 integer $form_id
19 *
20 * @return void
21 */
22 public function render( $field_settings, $form_id ) {
23 $value = $field_settings['default'];
24 ?>
25 <li <?php $this->print_list_attributes( $field_settings ); ?>>
26 <?php $this->print_label( $field_settings, $form_id ); ?>
27
28 <div class="wpuf-fields">
29 <input
30 id="<?php echo $field_settings['name'] . '_' . $form_id; ?>"
31 type="url" class="url <?php echo ' wpuf_'.$field_settings['name'].'_'.$form_id; ?>"
32 data-required="<?php echo $field_settings['required'] ?>"
33 data-type="text"
34 name="<?php echo esc_attr( $field_settings['name'] ); ?>"
35 placeholder="<?php echo esc_attr( $field_settings['placeholder'] ); ?>"
36 value="<?php echo esc_attr( $value ) ?>" size="<?php echo esc_attr( $field_settings['size'] ) ?>"
37 autocomplete="url"
38 />
39 <?php $this->help_text( $field_settings ); ?>
40 </div>
41
42 </li>
43 <?php
44 }
45
46 /**
47 * Get field options setting
48 *
49 * @return array
50 */
51 public function get_options_settings() {
52 $default_options = $this->get_default_option_settings();
53 $default_text_options = $this->get_default_text_option_settings( false ); // word_restriction = false
54
55 return array_merge( $default_options, $default_text_options );
56 }
57
58 /**
59 * Get the field props
60 *
61 * @return array
62 */
63 public function get_field_props() {
64 return $this->default_attributes();
65 }
66
67
68 /**
69 * Prepare entry
70 *
71 * @param $field
72 *
73 * @return mixed
74 */
75 public function prepare_entry( $field ) {
76 return esc_url( trim( $_POST[$field['name']] ) );
77 }
78 }