# jetformbuilder/3.6.5.3/components/module/base-module-it.php

JetFormBuilder — Dynamic Blocks Form Builder, version 3.6.5.3. 22 lines.

- Page: https://pluginprobe.com/plugins/jetformbuilder/3.6.5.3/code/components/module/base-module-it.php
- Raw: https://pluginprobe.com/plugins/jetformbuilder/3.6.5.3/raw/components/module/base-module-it.php
- Modified: 2023-11-20T11:46:54+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/jetformbuilder/3.6.5.3/code/components/module/base-module-it.php#L10-L20`.

```php
<?php


namespace JFB_Components\Module;

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

use JFB_Components\Repository\Repository_Item_Instance_Trait;

interface Base_Module_It extends Repository_Item_Instance_Trait {

	public function condition(): bool;

	public function init_hooks();

	public function remove_hooks();

}

```
