# formidable/4.11.02/classes/views/frm-fields/back-end/html-content.php

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

- Page: https://pluginprobe.com/plugins/formidable/4.11.02/code/classes/views/frm-fields/back-end/html-content.php
- Raw: https://pluginprobe.com/plugins/formidable/4.11.02/raw/classes/views/frm-fields/back-end/html-content.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/4.11.02/code/classes/views/frm-fields/back-end/html-content.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<p class="frm-has-modal">
	<label>
		<?php esc_html_e( 'Content', 'formidable' ); ?>
	</label>
	<span class="frm-with-right-icon">
		<?php
		FrmAppHelper::icon_by_class(
			'frm_icon_font frm_more_horiz_solid_icon frm-show-inline-modal',
			array(
				'data-open' => 'frm-smart-values-box',
				'title'     => esc_attr__( 'Toggle Options', 'formidable' ),
			)
		);
		?>
		<textarea name="field_options[description_<?php echo absint( $field['id'] ); ?>]" id="frm_description_<?php echo esc_attr( $field['id'] ); ?>" rows="8"><?php
		echo FrmAppHelper::esc_textarea( $field['description'] ); // WPCS: XSS ok.
		?></textarea>
	</span>
</p>

```
