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

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

- Page: https://pluginprobe.com/plugins/formidable/6.9.1/code/classes/views/frm-forms/settings-buttons.php
- Raw: https://pluginprobe.com/plugins/formidable/6.9.1/raw/classes/views/frm-forms/settings-buttons.php
- Modified: 2024-04-17T13:52:14+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.9.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.' );
}
?>
<p class="howto">
	<?php esc_html_e( 'Set your button text.', 'formidable' ); ?>
</p>

<input type="hidden" name="options[custom_style]" value="<?php echo esc_attr( $values['custom_style'] ); ?>" />

<table class="form-table">
	<?php 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 do_action( 'frm_add_form_button_options', $values ); ?>
</table>

```
