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

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

- Page: https://pluginprobe.com/plugins/formidable/5.4.4/code/classes/views/shared/views-info.php
- Raw: https://pluginprobe.com/plugins/formidable/5.4.4/raw/classes/views/shared/views-info.php
- Modified: 2022-06-02T15:57:18+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/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 style="overflow-y: auto;">
			<div class="frmcenter" style="margin-top:10vh; padding-bottom: 32px;">
				<div class="frm-video-wrapper">
					<iframe width="843" height="474" src="https://www.youtube.com/embed/pmYbQ79wonQ" 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>
</div>

```
