| 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 |
|