PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.20
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.20
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 / addons / list.php

list.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.20, at classes/views/addons/list.php

22 lines 655 B
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 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