| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
?> |
| 6 |
<div class="frm_wrap"> |
| 7 |
<div class="frm_page_container"> |
| 8 |
<?php |
| 9 |
FrmAppHelper::get_admin_header( |
| 10 |
array( |
| 11 |
'label' => __( 'Views', 'formidable' ), |
| 12 |
'form' => $form, |
| 13 |
'close' => $form ? admin_url( 'admin.php?page=formidable&frm_action=views&form=' . $form->id ) : '', |
| 14 |
) |
| 15 |
); |
| 16 |
?> |
| 17 |
<div style="overflow-y: auto;"> |
| 18 |
<div class="frmcenter" style="margin-top:10vh; padding-bottom: 32px;"> |
| 19 |
<div class="frm-video-wrapper"> |
| 20 |
<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> |
| 21 |
</div> |
| 22 |
<h2><?php esc_html_e( 'Show and Edit Entries with Views', 'formidable' ); ?></h2> |
| 23 |
<p style="max-width:400px;margin:20px auto"> |
| 24 |
<?php esc_html_e( 'Bring entries to the front-end of your site for full-featured applications or just to show the content.', 'formidable' ); ?> |
| 25 |
</p> |
| 26 |
<?php |
| 27 |
$upgrade_link_args = array( |
| 28 |
'medium' => 'views-info', |
| 29 |
'plan' => 'view', |
| 30 |
); |
| 31 |
FrmAddonsController::conditional_action_button( 'views', $upgrade_link_args ); |
| 32 |
?> |
| 33 |
</div> |
| 34 |
</div> |
| 35 |
</div> |
| 36 |
</div> |
| 37 |
|