PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.4.4
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / frm-forms / mb_html_tab.php

mb_html_tab.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.4.4, at classes/views/frm-forms/mb_html_tab.php

24 lines 540 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 ?>
6 <div id="frm-html-tags" class="tabs-panel">
7 <ul class="frm_code_list frm-full-hover">
8 <?php
9 $entry_shortcodes = FrmFormsHelper::html_shortcodes();
10
11 foreach ( $entry_shortcodes as $skey => $code ) {
12 FrmFormsHelper::insert_code_html(
13 array(
14 'code' => $skey,
15 'label' => $code['label'],
16 'class' => $code['class'],
17 'title' => isset( $code['title'] ) ? $code['title'] : '',
18 )
19 );
20 }
21 ?>
22 </ul>
23 </div>
24