# formidable/6.24.1/classes/views/frm-forms/settings-buttons.php

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

- Page: https://pluginprobe.com/plugins/formidable/6.24.1/code/classes/views/frm-forms/settings-buttons.php
- Raw: https://pluginprobe.com/plugins/formidable/6.24.1/raw/classes/views/frm-forms/settings-buttons.php
- Modified: 2024-12-10T15:25:08+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.24.1/code/classes/views/frm-forms/settings-buttons.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}

// Do not deprecate if the Pro version still use these hooks.
$should_deprecate_hook = ! class_exists( 'FrmProDb' ) || version_compare( FrmProDb::$plug_version, '6.16.3' ) >= 0;
?>

<table class="form-table">
	<?php
	if ( $should_deprecate_hook ) {
		do_action_deprecated( 'frm_add_form_style_tab_options', array( $values ), '6.16.3' );
	} else {
		do_action( 'frm_add_form_style_tab_options', $values );
	}
	?>
	<tr>
		<td colspan="2">
			<h3><?php esc_html_e( 'Buttons', 'formidable' ); ?></h3>
		</td>
	</tr>
	<tr>
		<td colspan="2">
			<div class="frm_note_style" style="margin-top: 0;">
				<?php esc_html_e( 'Submit button settings were moved to the Submit button in the form builder.', 'formidable' ); ?>
			</div>
		</td>
	</tr>
	<?php
	if ( $should_deprecate_hook ) {
		do_action_deprecated( 'frm_add_form_button_options', array( $values ), '6.16.3' );
	} else {
		do_action( 'frm_add_form_button_options', $values );
	}
	?>
</table>

```
