PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.8.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.8.2
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / dashboard / templates / pro-features-list.php

pro-features-list.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.8.2, at classes/views/dashboard/templates/pro-features-list.php

29 lines 914 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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