# formidable/6.21/classes/views/addons/list.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 6.21. 22 lines.

- Page: https://pluginprobe.com/plugins/formidable/6.21/code/classes/views/addons/list.php
- Raw: https://pluginprobe.com/plugins/formidable/6.21/raw/classes/views/addons/list.php
- Modified: 2024-10-02T17:14:52+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/formidable/6.21/code/classes/views/addons/list.php#L10-L20`.

```php
<?php
if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}

FrmAddonsHelper::show_upgrade_renew_cta();
FrmAddonsHelper::get_reconnect_link();
?>

<ul id="frm-addons-list" class="frm-list-grid-layout frm-mb-xs">
	<?php
	foreach ( $addons as $slug => $addon ) {
		require $view_path . 'addon.php';
	}
	?>
</ul>

<div class="frm-addons-request-addon frm-py-2xs frm-mt-xs">
	<span><?php esc_html_e( 'Not finding what you need?', 'formidable' ); ?></span>
	<a class="frm-font-semibold" href="<?php echo esc_url( $request_addon_url ); ?>" target="_blank"><?php esc_html_e( 'Request Add-On', 'formidable' ); ?></a>
</div>

```
