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

namespace Elementor\Modules\AtomicWidgets\Utils;

if ( ! defined( &#039;ABSPATH&#039; ) ) {
	exit; // Exit if accessed directly.
}

class Element_Position {

	const KIND_LAST = &#039;last&#039;;
	const KIND_FIRST = &#039;first&#039;;
	const KIND_INDEX = &#039;index&#039;;
	const KIND_AFTER_TYPE = &#039;after_type&#039;;
	const KIND_BEFORE_TYPE = &#039;before_type&#039;;

	const KINDS = [
		self::KIND_LAST,
		self::KIND_FIRST,
		self::KIND_INDEX,
		self::KIND_AFTER_TYPE,
		self::KIND_BEFORE_TYPE,
	];

	private string $kind;

	/**
	 * @var int|string|null
	 */
	private $value;

	private function __construct( string $kind, $value = null ) {
		if ( ! in_array( $kind, self::KINDS, true ) ) {
			throw new \InvalidArgumentException( esc_html( &quot;Invalid element position kind: {$kind}&quot; ) );
		}

		$this-&gt;kind = $kind;
		$this-&gt;value = $value;
	}

	public static function last(): self {
		return new self( self::KIND_LAST );
	}

	public static function first(): self {
		return new self( self::KIND_FIRST );
	}

	public static function at_index( int $index ): self {
		if ( $index &lt; 0 ) {
			throw new \InvalidArgumentException( &#039;Element_Position: index must be &gt;= 0.&#039; );
		}

		return new self( self::KIND_INDEX, $index );
	}

	public static function after_type( string $element_type ): self {
		self::assert_non_empty_element_type( $element_type, &#039;after_type&#039; );

		return new self( self::KIND_AFTER_TYPE, $element_type );
	}

	public static function before_type( string $element_type ): self {
		self::assert_non_empty_element_type( $element_type, &#039;before_type&#039; );

		return new self( self::KIND_BEFORE_TYPE, $element_type );
	}

	private static function assert_non_empty_element_type( string $element_type, string $method ): void {
		if ( &#039;&#039; === trim( $element_type ) ) {
			throw new \InvalidArgumentException(
				esc_html( &quot;Element_Position::{$method}: element_type must be a non-empty string.&quot; )
			);
		}
	}

	public function to_array(): array {
		return [
			&#039;kind&#039; =&gt; $this-&gt;kind,
			&#039;value&#039; =&gt; $this-&gt;value,
		];
	}
}
</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://www.mijikendarealestate.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-posts-post-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-posts-property-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-posts-agent-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-posts-ube_content-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-category-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-post_tag-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-property-type-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-property-status-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-property-feature-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-property-label-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-property-state-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-property-city-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-property-neighborhood-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-taxonomies-agency-1.xml</loc></sitemap><sitemap><loc>https://www.mijikendarealestate.com/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
