| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/prosvasi/wp-content/plugins/polylang/src/Options/Primitive/ |
Upload File : |
<?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 );
}