| 1 |
<?php |
| 2 |
/** |
| 3 |
* @since 6.8 |
| 4 |
* |
| 5 |
* @var array $features The list of pro features. |
| 6 |
* @package Formidable |
| 7 |
*/ |
| 8 |
|
| 9 |
if ( ! defined( 'ABSPATH' ) ) { |
| 10 |
die( 'You are not allowed to call this page directly.' ); |
| 11 |
} |
| 12 |
?> |
| 13 |
<div class="frm-dashboard-widget frm-card-item frm-px-0 frm-p-0"> |
| 14 |
<div class="frm-pro-features-list"> |
| 15 |
<h2><?php esc_html_e( 'Unlock all the Powerful Features to Defy the Limits', 'formidable' ); ?></h2> |
| 16 |
<ul class="frm_two_col frm-green-icons"> |
| 17 |
<?php foreach ( $features as $feature ) : ?> |
| 18 |
<li> |
| 19 |
<?php FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_icon' ); ?> |
| 20 |
<?php echo esc_html( $feature ); ?> |
| 21 |
</li> |
| 22 |
<?php endforeach; ?> |
| 23 |
</ul> |
| 24 |
<a target="_blank" href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'dashboard-discount' ) ); ?>" title="Upgrade" class="frm-button-primary"> |
| 25 |
<?php esc_html_e( 'Upgrade to Pro & Get 50% Off', 'formidable' ); ?> |
| 26 |
</a> |
| 27 |
</div> |
| 28 |
</div> |
| 29 |
|