# formidable/6.12/classes/views/styles/_style-options.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 6.12. 17 lines.

- Page: https://pluginprobe.com/plugins/formidable/6.12/code/classes/views/styles/_style-options.php
- Raw: https://pluginprobe.com/plugins/formidable/6.12/raw/classes/views/styles/_style-options.php
- Modified: 2023-02-14T18:34:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/formidable/6.12/code/classes/views/styles/_style-options.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<h2>
	<a href="<?php echo esc_url( FrmStylesHelper::get_list_url( $form->id ) ); ?>" tabindex="0" role="button" title="<?php esc_attr_e( 'Back', 'formidable' ); ?>">
		<svg class="frmsvg">
			<use xlink:href="#frm_back"></use>
		</svg>
	</a>
	<span id="frm_style_name"><?php echo esc_html( $style->post_title ); ?></span>
</h2>
<div class="styling_settings">
	<?php FrmStylesController::do_accordion_sections( FrmStylesController::$screen, 'side', compact( 'style', 'frm_style' ) ); ?>
</div>

```
