# formidable/6.12/classes/views/frm-forms/preview/footer.php

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

- Page: https://pluginprobe.com/plugins/formidable/6.12/code/classes/views/frm-forms/preview/footer.php
- Raw: https://pluginprobe.com/plugins/formidable/6.12/raw/classes/views/frm-forms/preview/footer.php
- Modified: 2024-05-06T16:07:10+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/frm-forms/preview/footer.php#L10-L20`.

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

/**
 * This view is created to avoid deprecation warnings when previewing a form and the
 * code in this view is mostly copied from "theme-compat/footer.php"
 *
 * @since 6.x
 */
wp_footer();
?>
	<hr />
	<div id="footer" role="contentinfo">
		<p>
			<?php
			printf(
				/* translators: 1: Site name, 2: WordPress */
				esc_html__( '%1$s is proudly powered by %2$s', 'formidable' ),
				esc_html( get_bloginfo( 'name' ) ),
				'<a href="https://wordpress.org/">WordPress</a>'
			);
			?>
		</p>
	</div>
</div>
<?php wp_footer(); ?>
</body>
</html>

```
