# formidable/6.11.1/classes/views/dashboard/templates/pro-features-list.php

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

- Page: https://pluginprobe.com/plugins/formidable/6.11.1/code/classes/views/dashboard/templates/pro-features-list.php
- Raw: https://pluginprobe.com/plugins/formidable/6.11.1/raw/classes/views/dashboard/templates/pro-features-list.php
- Modified: 2024-01-25T16:26:06+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/6.11.1/code/classes/views/dashboard/templates/pro-features-list.php#L10-L20`.

```php
<?php
/**
 * @since 6.8
 *
 * @var array $features The list of pro features.
 * @package Formidable
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<div class="frm-dashboard-widget frm-card-item frm-px-0 frm-p-0">
	<div class="frm-pro-features-list">
		<h2><?php esc_html_e( 'Unlock all the Powerful Features to Defy the Limits', 'formidable' ); ?></h2>
		<ul class="frm_two_col frm-green-icons">
			<?php foreach ( $features as $feature ) : ?>
				<li>
					<?php FrmAppHelper::icon_by_class( 'frmfont frm_checkmark_icon' ); ?>
					<?php echo esc_html( $feature ); ?>
				</li>
			<?php endforeach; ?>
		</ul>
		<a target="_blank" href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'dashboard-discount' ) ); ?>" title="Upgrade" class="frm-button-primary">
			<?php esc_html_e( 'Upgrade to Pro & Get 50% Off', 'formidable' ); ?>
		</a>
	</div>
</div>

```
