| 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 |
|