PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.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 / frm-settings / license_box.php

license_box.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.2, at classes/views/frm-settings/license_box.php

33 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 ?>
6 <div id="frm_license_top" class="frm_unauthorized_box">
7 <p id="frm-connect-btns" class="frm-show-unauthorized">
8 <a href="<?php echo esc_url( FrmAddonsController::connect_link() ); ?>" class="button-primary frm-button-primary">
9 <?php esc_html_e( 'Connect an Account', 'formidable' ); ?>
10 </a>
11 or
12 <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'settings-license' ) ); ?>" target="_blank" class="button-secondary frm-button-secondary">
13 <?php esc_html_e( 'Get Formidable Now', 'formidable' ); ?>
14 </a>
15 </p>
16
17 <div id="frm-using-lite" class="frm-show-unauthorized">
18 <p>You're using Formidable Forms Lite - no license needed. Enjoy! 🙂</p>
19 <p>
20 <?php
21 printf(
22 /* translators: %1$s: Start link HTML, %2$s: End link HTML */
23 esc_html__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'formidable' ),
24 '<a href="' . esc_url( FrmAppHelper::admin_upgrade_link( 'settings-license' ) ) . '">',
25 '</a>'
26 );
27 ?>
28 </p>
29 </div>
30 </div>
31
32 <div class="frm_pro_license_msg frm_hidden"></div>
33