PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.12
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.12
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 6.12, at classes/views/frm-settings/license_box.php

35 lines 1.2 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 frm-button-sm">
9 <?php esc_html_e( 'Connect an Account', 'formidable' ); ?>
10 </a>
11 <?php esc_html_e( 'or', 'formidable' ); ?>
12 <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'settings-license' ) ); ?>" target="_blank" class="button-secondary frm-button-secondary frm-button-sm">
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>
19 <?php echo esc_html( FrmAppHelper::copy_for_lite_license() ); ?>
20 </p>
21 <p>
22 <?php
23 printf(
24 /* translators: %1$s: Start link HTML, %2$s: End link HTML */
25 esc_html__( 'To unlock more features consider %1$supgrading to PRO%2$s.', 'formidable' ),
26 '<a href="' . esc_url( FrmAppHelper::admin_upgrade_link( 'settings-license' ) ) . '">',
27 '</a>'
28 );
29 ?>
30 </p>
31 </div>
32 </div>
33
34 <div class="frm_pro_license_msg frm_hidden"></div>
35