| 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' => __( 'Reports', 'formidable' ), |
| 12 |
'form' => $form, |
| 13 |
'close' => $form ? admin_url( 'admin.php?page=formidable&frm_action=reports&form=' . $form->id ) : '', |
| 14 |
) |
| 15 |
); |
| 16 |
?> |
| 17 |
<div class="frmcenter" style="margin-top:10vh"> |
| 18 |
<h2><?php esc_html_e( 'Get Live Graphs and Reports', 'formidable' ); ?></h2> |
| 19 |
<p style="max-width:400px;margin:20px auto"> |
| 20 |
<?php esc_html_e( 'Get more insight for surveys, polls, daily contacts, and more.', 'formidable' ); ?> |
| 21 |
</p> |
| 22 |
<a class="button button-primary frm-button-primary" href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'reports-info' ) ); ?>" target="_blank" rel="noopener"> |
| 23 |
<?php esc_html_e( 'Upgrade Now', 'formidable' ); ?> |
| 24 |
</a> |
| 25 |
<div class="frm-settings-screenshot-wrapper" style="margin-top: 30px;"> |
| 26 |
<div class="frm-settings-screenshot-toolbar"> |
| 27 |
<div class="frm-minmax-icon" style="background-color: #ED8181"></div> |
| 28 |
<div class="frm-minmax-icon" style="background-color: #EDE06A"></div> |
| 29 |
<div class="frm-minmax-icon" style="background-color: #80BE30"></div> |
| 30 |
<img src="<?php echo esc_url( FrmAppHelper::plugin_url() . '/images/tab.svg' ); ?>" /> |
| 31 |
</div> |
| 32 |
<div> |
| 33 |
<img src="<?php echo esc_attr( FrmAppHelper::plugin_url() . '/images/screenshots/reports.png' ); ?>" alt="<?php esc_attr_e( 'View reports', 'formidable' ); ?>" height="243" /> |
| 34 |
</div> |
| 35 |
</div> |
| 36 |
</div> |
| 37 |
</div> |
| 38 |
</div> |
| 39 |
|