PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.2
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 / views / frm-fields / back-end / input-mask-info.php

input-mask-info.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.2, at classes/views/frm-fields/back-end/input-mask-info.php

32 lines 856 B
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 <p class="howto">
7 <?php esc_html_e( 'To create a custom input mask, you’ll need to use this specific set of symbols:', 'formidable' ); ?>
8 </p>
9 <p>
10 9 - <?php esc_html_e( 'Numeric', 'formidable' ); ?> (0-9)<br/>
11 a - <?php esc_html_e( 'Alphabetical', 'formidable' ); ?> (a-z, A-Z)<br/>
12 * - <?php esc_html_e( 'Alphanumeric', 'formidable' ); ?> (0-9, a-z, A-Z)<br/>
13 </p>
14 <p>
15 <?php esc_html_e( 'Example:', 'formidable' ); ?> 1 (999)-999-9999
16 </p>
17 <p>
18 <a href="<?php
19 echo esc_url(
20 FrmAppHelper::admin_upgrade_link(
21 array(
22 'medium' => 'builder',
23 'content' => 'inputmask',
24 ),
25 'knowledgebase/format/'
26 )
27 );
28 ?>" target="_blank" rel="noopener">
29 <?php esc_html_e( 'See more examples and docs', 'formidable' ); ?>
30 </a>
31 </p>
32