# formidable/5.4.4/classes/views/frm-forms/mb_html_tab.php

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

- Page: https://pluginprobe.com/plugins/formidable/5.4.4/code/classes/views/frm-forms/mb_html_tab.php
- Raw: https://pluginprobe.com/plugins/formidable/5.4.4/raw/classes/views/frm-forms/mb_html_tab.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.4.4/code/classes/views/frm-forms/mb_html_tab.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<div id="frm-html-tags" class="tabs-panel">
	<ul class="frm_code_list frm-full-hover">
		<?php
		$entry_shortcodes = FrmFormsHelper::html_shortcodes();

		foreach ( $entry_shortcodes as $skey => $code ) {
			FrmFormsHelper::insert_code_html(
				array(
					'code'  => $skey,
					'label' => $code['label'],
					'class' => $code['class'],
					'title' => isset( $code['title'] ) ? $code['title'] : '',
				)
			);
		}
		?>
	</ul>
</div>

```
