File "mb_html_tab.php"
Full path: /home/bud/public_html/swamp/wp-admin/wp-content/plugins/formidable/classes/views/frm-forms/mb_html_tab.php
File size: 540 bytes
MIME-type: text/x-php
Charset: utf-8
<?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>