# polylang/3.8.9/src/Options/Primitive/Abstract_Map.php

Polylang, version 3.8.9. 106 lines.

- Page: https://pluginprobe.com/plugins/polylang/3.8.9/code/src/Options/Primitive/Abstract_Map.php
- Raw: https://pluginprobe.com/plugins/polylang/3.8.9/raw/src/Options/Primitive/Abstract_Map.php
- Modified: 2026-02-23T14:05:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/polylang/3.8.9/code/src/Options/Primitive/Abstract_Map.php#L10-L20`.

```php
<?php
/**
 * @package Polylang
 */

namespace WP_Syntex\Polylang\Options\Primitive;

use WP_Syntex\Polylang\Options\Options;
use WP_Syntex\Polylang\Options\Abstract_Option;

defined( 'ABSPATH' ) || exit;

/**
 * Class defining a map option.
 *
 * @since 3.8
 */
abstract class Abstract_Map extends Abstract_Option {
	/**
	 * Option value.
	 *
	 * @var array
	 */
	protected $value;

	/**
	 * Returns the JSON schema part specific to this option.
	 *
	 * @since 3.8
	 *
	 * @return array Partial schema.
	 */
	protected function get_data_structure(): array {
		return array_merge(
			$this->get_inner_structure(),
			array(
				'type' => 'object', // Correspond to associative array in PHP, @see{https://developer.wordpress.org/rest-api/extending-the-rest-api/schema/#primitive-types}.
			)
		);
	}

	/**
	 * Removes a key from the map.
	 *
	 * @since 3.8
	 *
	 * @param string $key The key to remove.
	 * @return bool True if the key has been removed. False otherwise.
	 */
	public function remove( string $key ): bool {
		if ( ! array_key_exists( $key, $this->value ) ) {
			return false;
		}

		$this->value[ $key ] = $this->reset_value( $key );

		return true;
	}

	/**
	 * Adds an item to the map.
	 *
	 * @since 3.8
	 *
	 * @param array<string, mixed> $item The item(s) to add. Must be a key-value pair.
	 * @param Options              $options The options instance.
	 * @return bool True if the value was added successfully. False otherwise.
	 */
	public function add( $item, Options $options ): bool {
		if ( ! is_array( $item ) ) {
			return false;
		}

		/** @var array<string, mixed> $old_value */
		$old_value     = $this->get();
		$updated_value = array_merge(
			$old_value,
			$item
		);

		return $this->set(
			$updated_value,
			$options
		);
	}

	/**
	 * Returns the JSON schema part specific to the inner structure of this option.
	 *
	 * @since 3.8
	 *
	 * @return array Partial schema.
	 */
	abstract protected function get_inner_structure(): array;

	/**
	 * Returns the reset value for a key.
	 *
	 * @since 3.8
	 *
	 * @param string $key The key to reset.
	 * @return mixed The reset value.
	 */
	abstract protected function reset_value( string $key );
}

```
