PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.7
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.7
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 / shared / admin-footer-links.php

admin-footer-links.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.7, at classes/views/shared/admin-footer-links.php

45 lines 2.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 // Determine the support link based on lite vs pro.
7 $support_link = ! FrmAppHelper::pro_is_installed() ? 'https://wordpress.org/support/plugin/formidable/' : 'https://formidableforms.com/new-topic/';
8
9 // Determine the upgrade link based on lite vs pro.
10 $upgrade_link = ! FrmAppHelper::pro_is_installed() ? 'https://formidableforms.com/lite-upgrade/' : 'https://formidableforms.com/account/downloads/';
11 ?>
12
13 <div class="frm-admin-footer-links frm_hidden">
14 <span class="frm-admin-footer-links-text">
15 <?php
16 printf(
17 /* translators: %1$s: Heart icon */
18 esc_html__( 'Made with %1$s by the Formidable Team', 'formidable' ),
19 '<span class="dashicons dashicons-heart"></span>'
20 );
21 ?>
22 </span><!-- .frm-admin-footer-links-text -->
23
24 <div class="frm-admin-footer-links-nav">
25 <a href="<?php echo esc_url( $support_link ); ?>" target="_blank"><?php esc_html_e( 'Support', 'formidable' ); ?></a>
26 <span>/</span>
27 <a href="https://formidableforms.com/knowledgebase/" target="_blank"><?php esc_html_e( 'Docs', 'formidable' ); ?></a>
28 <?php if ( 'elite' !== FrmAddonsController::license_type() ) : ?>
29 <span>/</span>
30 <a href="<?php echo esc_url( $upgrade_link ); ?>" target="_blank"><?php esc_html_e( 'Upgrade', 'formidable' ); ?></a>
31 <?php endif; ?>
32 </div><!-- .frm-admin-footer-links-nav -->
33
34 <div class="frm-admin-footer-links-socials">
35 <!-- Facebook link -->
36 <a href="https://www.facebook.com/formidableforms/" target="_blank"><span class="dashicons dashicons-facebook"></span></a>
37 <!-- Instagram link -->
38 <a href="https://www.instagram.com/formidableforms/" target="_blank"><span class="dashicons dashicons-instagram"></span></a>
39 <!-- Twitter link -->
40 <a href="https://twitter.com/formidableforms/" target="_blank"><span class="dashicons dashicons-twitter"></span></a>
41 <!-- Youtube link -->
42 <a href="https://www.youtube.com/c/FormidableFormsPlugin/" target="_blank"><span class="dashicons dashicons-youtube"></span></a>
43 </div><!-- .frm-admin-footer-links-socials -->
44 </div><!-- .frm-admin-footer-links -->
45