| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
die( 'You are not allowed to call this page directly.' ); |
| 4 |
} |
| 5 |
|
| 6 |
FrmAddonsHelper::show_upgrade_renew_cta(); |
| 7 |
FrmAddonsHelper::get_reconnect_link(); |
| 8 |
?> |
| 9 |
|
| 10 |
<ul id="frm-addons-list" class="frm-list-grid-layout frm-mb-xs"> |
| 11 |
<?php |
| 12 |
foreach ( $addons as $slug => $addon ) { |
| 13 |
require $view_path . 'addon.php'; |
| 14 |
} |
| 15 |
?> |
| 16 |
</ul> |
| 17 |
|
| 18 |
<div class="frm-addons-request-addon frm-py-2xs frm-mt-xs"> |
| 19 |
<span><?php esc_html_e( 'Not finding what you need?', 'formidable' ); ?></span> |
| 20 |
<a class="frm-font-semibold" href="<?php echo esc_url( $request_addon_url ); ?>" target="_blank"><?php esc_html_e( 'Request Add-On', 'formidable' ); ?></a> |
| 21 |
</div> |
| 22 |
|