# formidable/5.5.3.1/classes/views/frm-fields/back-end/input-mask-info.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 5.5.3.1. 32 lines.

- Page: https://pluginprobe.com/plugins/formidable/5.5.3.1/code/classes/views/frm-fields/back-end/input-mask-info.php
- Raw: https://pluginprobe.com/plugins/formidable/5.5.3.1/raw/classes/views/frm-fields/back-end/input-mask-info.php
- Modified: 2020-12-07T20:56:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/formidable/5.5.3.1/code/classes/views/frm-fields/back-end/input-mask-info.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<p class="howto">
	<?php esc_html_e( 'To create a custom input mask, you’ll need to use this specific set of symbols:', 'formidable' ); ?>
</p>
<p>
	9 - <?php esc_html_e( 'Numeric', 'formidable' ); ?> (0-9)<br/>
	a - <?php esc_html_e( 'Alphabetical', 'formidable' ); ?> (a-z, A-Z)<br/>
	* - <?php esc_html_e( 'Alphanumeric', 'formidable' ); ?> (0-9, a-z, A-Z)<br/>
</p>
<p>
	<?php esc_html_e( 'Example:', 'formidable' ); ?> 1 (999)-999-9999
</p>
<p>
	<a href="<?php
		echo esc_url(
			FrmAppHelper::admin_upgrade_link(
				array(
					'medium' => 'builder',
					'content' => 'inputmask',
				),
				'knowledgebase/format/'
			)
		);
		?>" target="_blank" rel="noopener">
		<?php esc_html_e( 'See more examples and docs', 'formidable' ); ?>
	</a>
</p>

```
