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

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

- Page: https://pluginprobe.com/plugins/formidable/6.8.2/code/classes/views/frm-fields/back-end/html-content.php
- Raw: https://pluginprobe.com/plugins/formidable/6.8.2/raw/classes/views/frm-fields/back-end/html-content.php
- Modified: 2021-12-02T15:17:24+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/6.8.2/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' ),
			)
		);
		$e_args  = array(
			'textarea_name' => 'field_options[description_' . absint( $field['id'] ) . ']',
			'textarea_rows' => 8,
		);
		$html_id = 'frm_description_' . absint( $field['id'] );
		wp_editor( $field['description'], $html_id, $e_args );
		?>
	</span>
</p>

```
