# formidable/5.4.4/classes/views/styles/header-buttons.php

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

- Page: https://pluginprobe.com/plugins/formidable/5.4.4/code/classes/views/styles/header-buttons.php
- Raw: https://pluginprobe.com/plugins/formidable/5.4.4/raw/classes/views/styles/header-buttons.php
- Modified: 2020-12-07T20:56:38+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/5.4.4/code/classes/views/styles/header-buttons.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<?php if ( isset( $delete_link ) ) { ?>
	<a href="<?php echo esc_url( $delete_link ); ?>" id="frm_delete_style" class="submitdelete deletion alignright" data-frmverify="<?php esc_attr_e( 'Permanently delete this style?', 'formidable' ); ?>">
		<?php FrmAppHelper::icon_by_class( 'frmfont frm_delete_icon', array( 'aria-hidden' => 'true' ) ); ?>
	</a>
<?php } ?>

<input type="submit" id="save_menu_header" class="button button-primary frm-button-primary menu-save" value="<?php esc_attr_e( 'Update', 'formidable' ); ?>"  />
<a href="#" class="button button-secondary frm-button-secondary" id="frm_reset_style" data-resetstyle="1" data-frmverify="<?php esc_attr_e( 'Reset this style back to the default? ', 'formidable' ); ?>">
	<?php esc_attr_e( 'Reset', 'formidable' ); ?>
</a>

```
