# formidable/5.0/classes/views/shared/views-info.php

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

- Page: https://pluginprobe.com/plugins/formidable/5.0/code/classes/views/shared/views-info.php
- Raw: https://pluginprobe.com/plugins/formidable/5.0/raw/classes/views/shared/views-info.php
- Modified: 2021-06-02T14:29:40+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.0/code/classes/views/shared/views-info.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<div class="frm_wrap">
	<div class="frm_page_container">
		<?php
		FrmAppHelper::get_admin_header(
			array(
				'label' => __( 'Views', 'formidable' ),
				'form'  => $form,
				'close' => $form ? admin_url( 'admin.php?page=formidable&frm_action=views&form=' . $form->id ) : '',
			)
		);
		?>
		<div class="frmcenter" style="margin-top:10vh">
			<div class="frm-video-wrapper">
				<iframe width="843" height="474" src="https://www.youtube.com/embed/3T-WMIvYadg" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
			</div>
			<h2><?php esc_html_e( 'Show and Edit Entries with Views', 'formidable' ); ?></h2>
			<p style="max-width:400px;margin:20px auto">
				<?php esc_html_e( 'Bring entries to the front-end of your site for full-featured applications or just to show the content.', 'formidable' ); ?>
			</p>
			<?php
			$upgrade_link_args = array(
				'medium' => 'views-info',
				'plan'   => 'view',
			);
			FrmAddonsController::conditional_action_button( 'views', $upgrade_link_args );
			?>
		</div>
	</div>
</div>

```
