| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<div class="frm-inline-modal frm-modal postbox <?php echo esc_attr( $args['class'] . ( $args['show'] ? '' : ' frm_hidden' ) ); ?>" id="<?php echo esc_attr( $args['id'] ); ?>"> |
| 7 |
<a href="#" class="dismiss" title="<?php esc_attr_e( 'Close', 'formidable' ); ?>"> |
| 8 |
<?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => __( 'Close', 'formidable' ) ) ); ?> |
| 9 |
</a> |
| 10 |
<ul class="frm-nav-tabs"> |
| 11 |
<li class="frm-tabs"> |
| 12 |
<a href="#"> |
| 13 |
<?php echo esc_html( $args['title'] ); ?> |
| 14 |
</a> |
| 15 |
</li> |
| 16 |
</ul> |
| 17 |
<div class="inside"> |
| 18 |
<?php call_user_func( $args['callback'], $args['args'] ); ?> |
| 19 |
</div> |
| 20 |
</div> |
| 21 |
|