# formidable/5.4.4/classes/views/frm-fields/back-end/smart-values.php

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

- Page: https://pluginprobe.com/plugins/formidable/5.4.4/code/classes/views/frm-fields/back-end/smart-values.php
- Raw: https://pluginprobe.com/plugins/formidable/5.4.4/raw/classes/views/frm-fields/back-end/smart-values.php
- Modified: 2020-12-07T20:56:38+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/5.4.4/code/classes/views/frm-fields/back-end/smart-values.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<div class="cta-inside">
	<p>
		<?php
		/* translators: %s: Feature name */
		$message = __( '%s are not available on your plan. Did you know you can upgrade to PRO to unlock more awesome features?', 'formidable' );
		printf( esc_html( $message ), '<span class="frm_feature_label">Smart tags</span>' );
		?>
	</p>
	<p>
		<a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( $upgrade_link ) ); ?>" class="button button-primary frm-button-primary" target="_blank" rel="noopener noreferrer">
			<?php esc_html_e( 'Upgrade', 'formidable' ); ?>
		</a>

		<a href="<?php echo esc_url( FrmAppHelper::make_affiliate_url( FrmAppHelper::admin_upgrade_link( $upgrade_link, 'knowledgebase/install-formidable-forms/' ) ) ); ?>" target="_blank" class="frm-link-secondary alignright">
			<?php esc_html_e( 'Already purchased?', 'formidable' ); ?>
		</a>
	</p>
</div>

```
