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

36 lines 1.2 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 <p class="howto frm-mt-sm frm-italic">
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 class="frm-mt-0 frm-text-md">
10 <span class="frm-block frm-mb-2xs">9 - <?php esc_html_e( 'Numeric', 'formidable' ); ?> (0-9)</span>
11 <span class="frm-block frm-mb-2xs">a - <?php esc_html_e( 'Alphabetical', 'formidable' ); ?> (a-z, A-Z)</span>
12 <span class="frm-block frm-mb-2xs">* - <?php esc_html_e( 'Alphanumeric', 'formidable' ); ?> (0-9, a-z, A-Z)</span>
13 </p>
14 <span class="frm-hr"></span>
15 <p class="frm-h-stack-xs">
16 <?php FrmAppHelper::icon_by_class( 'frmfont frm_file_text2_icon frm_svg24' ); ?>
17 <span>
18 <?php
19 printf(
20 // translators: %1s: open anchor tag, %2s: close anchor tag
21 esc_html__( 'More examples on our %1$sdocs page%2$s.', 'formidable' ),
22 '<a class="frm-link-secondary" href="' . esc_url(
23 FrmAppHelper::admin_upgrade_link(
24 array(
25 'medium' => 'builder',
26 'content' => 'inputmask',
27 ),
28 'knowledgebase/format/'
29 )
30 ) . '" target="_blank" rel="noopener">',
31 '</a>'
32 );
33 ?>
34 </span>
35 </p>
36