PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.27
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.27
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / models / fields / FrmFieldPhone.php

FrmFieldPhone.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.27, at classes/models/fields/FrmFieldPhone.php

95 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5
6 /**
7 * @since 3.0
8 */
9 class FrmFieldPhone extends FrmFieldType {
10
11 /**
12 * @var string
13 *
14 * @since 3.0
15 */
16 protected $type = 'phone';
17
18 /**
19 * @var bool
20 *
21 * @since 3.0
22 */
23 protected $holds_email_values = true;
24
25 /**
26 * @var bool
27 */
28 protected $array_allowed = false;
29
30 /**
31 * @return bool[]
32 */
33 protected function field_settings_for_type() {
34 return array(
35 'size' => true,
36 'clear_on_focus' => true,
37 'invalid' => true,
38 );
39 }
40
41 /**
42 * @since 6.9
43 *
44 * @param array $args Includes 'field', 'display', and 'values'.
45 *
46 * @return void
47 */
48 public function show_primary_options( $args ) {
49 $field = $args['field'];
50
51 include FrmAppHelper::plugin_path() . '/classes/views/frm-fields/back-end/phone/phone-type.php';
52 FrmFieldsController::show_format_option( $field, true );
53
54 parent::show_primary_options( $args );
55 }
56
57 /**
58 * Retrieves the HTML for an 'International' option in a dropdown.
59 *
60 * @since 6.9
61 *
62 * @return void Outputs the HTML option tag directly.
63 */
64 protected function print_international_option() {
65 ?>
66 <option
67 value=""
68 class="frm_show_upgrade frm_noallow"
69 data-upgrade="<?php esc_attr_e( 'International phone field', 'formidable' ); ?>"
70 data-medium="international-phone-field"
71 >
72 <?php esc_html_e( 'International', 'formidable' ); ?>
73 </option>
74 <?php
75 }
76
77 /**
78 * @return string
79 */
80 protected function html5_input_type() {
81 return 'tel';
82 }
83
84 /**
85 * @since 4.0.04
86 *
87 * @param array|string $value
88 *
89 * @return void
90 */
91 public function sanitize_value( &$value ) {
92 FrmAppHelper::sanitize_value( 'sanitize_text_field', $value );
93 }
94 }
95