HEX
Server: Apache
System: Linux gains.arrowcloudlinux.com 4.18.0-553.69.1.lve.el8.x86_64 #1 SMP Wed Aug 13 19:53:59 UTC 2025 x86_64
User: mbkashyap (2642)
PHP: 8.1.33
Disabled: allow_url_include, show_source, symlink, system, passthru, exec, popen, pclose, proc_open, proc_terminate,proc_get_status, proc_close, proc_nice, allow_url_fopen, shell-exec, shell_exec, fpassthru, base64_encodem, escapeshellcmd, escapeshellarg, crack_check,crack_closedict, crack_getlastmessage, crack_opendict, posix_kill, posix_mkfifo, posix_setpgid, posix_setsid, posix_setuid, dl, escap, phpinfo
Upload Files
File: /home/mbkashyap/public_html/wp-content/plugins/bizmaster-core/admin/Layouts/Init.php
<?php
namespace Wowaddons\Admin\Layouts;

defined( 'ABSPATH' ) || exit;

class Init{

    public function __construct(){

        add_action( 'elementor/editor/footer', array( $this, 'render' ) );
		new Ajax();
		add_action('elementor/editor/after_enqueue_styles', array( $this, 'layout_contents' ) );
    }

	public function layout_contents() { 
		ob_start(); ?>
		<div class="widgetarea_iframe_modal"> 
			<?php include 'layouts.php'; ?>
		</div>
		<?php echo ob_get_clean();
	}

	public function render(){
		$files = glob( dirname(__FILE__) . '/views/*.php' );
		foreach ( $files as $file ) {
			$name = basename( $file, '.php' );
			ob_start();
			include $file;
			printf( '<script type="text/html" id="view-wowaddons-%1$s">%2$s</script>', $name, ob_get_clean() );
		}
	}
}