HEX
Server: Apache
System: Linux belinyu.iixcp.rumahweb.net 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP Thu May 7 23:17:13 UTC 2026 x86_64
User: sduw1495 (3615)
PHP: 7.4.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: //proc/self/cwd/wp-content/plugins/jetformbuilder/modules/modules-controller.php
<?php


namespace JFB_Modules;

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

use Jet_Form_Builder\Blocks;
use JFB_Components\Module\Module_Controller_It;
use JFB_Components\Module\Module_Controller_Trait;
use Jet_Form_Builder\Gateways\Gateway_Manager;

class Modules_Controller implements Module_Controller_It {

	use Module_Controller_Trait;

	public function rep_instances(): array {
		// backward compatibility
		require_once jet_form_builder()->plugin_dir( 'modules/gateways/legacy/gateway-manager.php' );

		return array(
			// core required modules
			new Jobs\Module(),
			new Jet_Plugins\Module(),
			new Logger\Module(),
			new Dev\Module(),
			new Post_Type\Module(),
			new Bulk_Options\Module(),
			new Block_Parsers\Module(),
			new Webhook\Module(),
			new Rest_Api\Module(),
			new Option_Query\Module(),
			new Blocks\Module(),
			new Security\Module(),
			new Rich_Content\Module(),
			// additional
			new Shortcode\Module(),
			new Option_Field\Module(),
			new Wp_Experiments\Module(),
			new Deprecated\Module(),
			new Jet_Style\Module(),
			new Switch_Page_On_Change\Module(),
			new Form_Record\Module(),
			new Advanced_Choices\Module(),
			new Captcha\Module(),
			new Gateway_Manager(),
			new Active_Campaign\Module(),
			new Verification\Module(),
			new Sanitize_Value\Module(),
			new Onboarding\Module(),
			new Html_Parser\Module(),
			new Ai\Module(),
			new Validation\Module(),
			new Wysiwyg\Module(),
			new Switcher\Module(),
		);
	}

}