| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
|
| 6 |
$back_button_args = FrmStylesHelper::get_style_options_back_button_args( $style, $form->id ); |
| 7 |
$back_button_attr = array_intersect_key( array_filter( $back_button_args ), array_flip( array( 'id', 'href' ) ) ); |
| 8 |
?> |
| 9 |
<h2> |
| 10 |
<a <?php FrmAppHelper::array_to_html_params( $back_button_attr, true ); ?> |
| 11 |
tabindex="0" role="button" |
| 12 |
title="<?php esc_attr_e( 'Back', 'formidable' ); ?>"> |
| 13 |
<svg class="frmsvg"> |
| 14 |
<use href="#frm_back"></use> |
| 15 |
</svg> |
| 16 |
</a> |
| 17 |
<span id="frm_style_name"><?php echo esc_html( $back_button_args['title'] ); ?></span> |
| 18 |
</h2> |
| 19 |
|
| 20 |
<div class="styling_settings <?php echo esc_attr( FrmStylesHelper::style_editor_get_wrapper_classname( 'advanced-settings' ) ); ?>"> |
| 21 |
<?php FrmStylesController::do_accordion_sections( FrmStylesController::$screen, 'side', compact( 'style', 'frm_style' ) ); ?> |
| 22 |
</div> |
| 23 |
|
| 24 |
<div class="frm-quick-settings frm_grid_container <?php echo esc_attr( FrmStylesHelper::style_editor_get_wrapper_classname( 'quick-settings' ) ); ?>"> |
| 25 |
<?php require_once FrmAppHelper::plugin_path() . '/classes/views/styles/_quick-settings.php'; ?> |
| 26 |
</div> |
| 27 |
|