# formidable/6.16.1.1/classes/views/addons/index.php

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

- Page: https://pluginprobe.com/plugins/formidable/6.16.1.1/code/classes/views/addons/index.php
- Raw: https://pluginprobe.com/plugins/formidable/6.16.1.1/raw/classes/views/addons/index.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.16.1.1/code/classes/views/addons/index.php#L10-L20`.

```php
<?php
/**
 * Add-Ons Page.
 *
 * @package Formidable
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<div id="frm-addons-page" class="frm_wrap frm-page-skeleton">
	<div class="frm_page_container">
		<?php
		FrmAppHelper::get_admin_header(
			array(
				'label' => __( 'Formidable Add-Ons', 'formidable' ),
			)
		);
		?>

		<div class="columns-2">
			<div id="frm-page-skeleton-sidebar" class="frm-right-panel frm-flex-col frm-hide-js">
				<div class="frm-scrollbar-wrapper frm-flex-col frm-gap-sm">
					<?php
					// Search box.
					FrmAppHelper::show_search_box(
						array(
							'input_id'    => 'addon',
							'placeholder' => __( 'Search Add-Ons', 'formidable' ),
							'tosearch'    => 'frm-searchable-addon',
						)
					);

					// Categories list.
					require $view_path . 'categories.php';
					?>
				</div>
			</div>

			<div id="post-body-content" class="frm-flex-col frm-gap-sm frm-p-xl frm-hide-js">
				<?php require $view_path . 'list.php'; ?>
			</div>
		</div>
	</div>
</div>

```
