PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.2.0
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.2.0
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-checkbox.php

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

122 lines 3.8 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_Checkbox extends WeForms_Field_Contract {
7
8 function __construct() {
9 $this->name = __( 'Checkbox', 'weforms' );
10 $this->input_type = 'checkbox_field';
11 $this->icon = 'check-square-o';
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 $selected = !empty( $field_settings['selected'] ) ? $field_settings['selected'] : array();
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" data-required="<?php echo $field_settings['required'] ?>" data-type="radio">
29
30 <?php
31 if ( $field_settings['options'] && count( $field_settings['options'] ) > 0 ) {
32
33 foreach ($field_settings['options'] as $value => $option) {
34
35 ?>
36 <label <?php echo $field_settings['inline'] == 'yes' ? 'class="wpuf-checkbox-inline"' : 'class="wpuf-checkbox-block"'; ?>>
37 <input type="checkbox" class="<?php echo 'wpuf_' . $field_settings['name']. '_'. $form_id; ?>" name="<?php echo $field_settings['name']; ?>[]" value="<?php echo esc_attr( $value ); ?>"<?php echo in_array( $value, $selected ) ? ' checked="checked"' : ''; ?> />
38 <?php echo $option; ?>
39 </label>
40 <?php
41 }
42 }
43 ?>
44
45 <?php $this->help_text( $field_settings ); ?>
46
47 </div>
48 </li>
49 <?php
50 }
51
52 /**
53 * Get field options setting
54 *
55 * @return array
56 */
57 public function get_options_settings() {
58 $default_options = $this->get_default_option_settings( true, array( 'width' ) );
59 $dropdown_options = array(
60 $this->get_default_option_dropdown_settings( true ),
61
62 array(
63 'name' => 'inline',
64 'title' => __( 'Show in inline list', 'wpuf' ),
65 'type' => 'radio',
66 'options' => array(
67 'yes' => __( 'Yes', 'wpuf' ),
68 'no' => __( 'No', 'wpuf' ),
69 ),
70 'default' => 'no',
71 'inline' => true,
72 'section' => 'advanced',
73 'priority' => 23,
74 'help_text' => __( 'Show this option in an inline list', 'wpuf' ),
75 ),
76 );
77
78 return array_merge( $default_options, $dropdown_options );
79 }
80
81 /**
82 * Get the field props
83 *
84 * @return array
85 */
86 public function get_field_props() {
87 $defaults = $this->default_attributes();
88 $props = array(
89 'selected' => array(),
90 'inline' => 'no',
91 'options' => array( 'Option' => __( 'Option', 'wpuf' ) ),
92 );
93
94 return array_merge( $defaults, $props );
95 }
96
97 /**
98 * Prepare entry
99 *
100 * @param $field
101 *
102 * @return mixed
103 */
104 public function prepare_entry( $field ) {
105
106 $entry_value = ( is_array( $_POST[$field['name']] ) && $_POST[$field['name']] ) ? $_POST[$field['name']] : array();
107
108 if ( $entry_value ) {
109 $new_val = array();
110
111 foreach ($entry_value as $option_key) {
112 $new_val[] = isset( $field['options'][$option_key] ) ? $field['options'][$option_key] : '';
113 }
114
115 $entry_value = implode( WeForms::$field_separator, $new_val );
116 } else {
117 $entry_value = '';
118 }
119
120 return $entry_value;
121 }
122 }