As the sun rises and the forest mist clears, and the clouds return and the caves darken, these changes of light and shadow are the morning and evening in the mountains. Wildflowers bloom with their subtle fragrance, fine trees flourish with their dense shade, the wind and frost are pure and clean, and the water recedes to reveal the rocks—these are the four seasons in the mountains. Going out in the morning and returning in the evening, the scenery of the four seasons is different, and the joy is endless.至于负者歌于途,行者休于树,前者呼,后者应,伛偻提携,往来而不绝者,滁人游也。临溪而渔,溪深而鱼肥,酿泉为酒,泉香而酒洌,山肴野蔌,杂然而前陈者,太守宴也。宴酣之乐,非丝非竹,射者中,弈者胜,觥筹交错,起坐而喧哗者,众宾欢也。苍颜白发,颓然乎其间者,太守醉也。
<?php
/**
* @package Polylang
*/
namespace WP_Syntex\Polylang\Options;
use WP_Error;
use WP_Term;
use WP_Syntex\Polylang\Options\Options;
defined( 'ABSPATH' ) || exit;
/**
* Class defining a single option.
*
* @since 3.7
*
* @phpstan-type SchemaType 'string'|'null'|'number'|'integer'|'boolean'|'array'|'object'
* @phpstan-type Schema array{
* type: SchemaType,
* description: string,
* default: mixed
* }
*/
abstract class Abstract_Option {
/**
* Option value.
*
* @var mixed
*/
protected $value;
/**
* Cached option JSON schema.
*
* @var array|null
*
* @phpstan-var Schema|null
*/
private $schema;
/**
* Validation and sanitization errors.
*
* @var WP_Error
*/
protected $errors;
/**
* Constructor.
*
* @since 3.7
*
* @param mixed $value Optional. Option value.
*/
public function __construct( $value = null ) {
$this->errors = new WP_Error();
if ( ! isset( $value ) ) {
$this->value = $this->get_default();
return;
}
$value = rest_sanitize_value_from_schema( $this->prepare( $value ), $this->get_data_structure(), static::key() );
if ( ! is_wp_error( $value ) ) {
$this->value = $value;
} else {
$this->value = $this->get_default();
}
}
/**
* Returns option key.
*
* @since 3.7
*
* @return string
*
* @phpstan-return non-falsy-string
*/
abstract public static function key(): string;
/**
* Sets option's value if valid, does nothing otherwise.
*
* @since 3.7
*
* @param mixed $value Value to set.
* @param Options $options All options.
* @return bool True if the value has been assigned. False in case of errors.
*/
public function set( $value, Options $options ): bool {
$this->errors = new WP_Error(); // Reset errors.
$value = $this->prepare( $value );
$is_valid = rest_validate_value_from_schema( $value, $this->get_data_structure(), static::key() );
if ( is_wp_error( $is_valid ) ) {
// Blocking validation error.
$this->errors->merge_from( $is_valid );
return false;
}
$value = $this->sanitize( $value, $options );
if ( is_wp_error( $value ) ) {
// Blocking sanitization error.
$this->errors->merge_from( $value );
return false;
}
$this->value = $value;
return true;
}
/**
* Returns option's value.
*
* @since 3.7
*
* @return mixed
*/
public function get() {
return $this->value;
}
/**
* Sets default option value.
*
* @since 3.7
*
* @return mixed The new value.
*/
public function reset() {
$this->value = $this->get_default();
return $this->value;
}
/**
* Returns JSON schema of the option.
*
* @since 3.7
*
* @return array The schema.
*
* @phpstan-return Schema
*/
public function get_schema(): array {
if ( is_array( $this->schema ) ) {
return $this->schema;
}
$this->schema = array_merge(
array(
'description' => $this->get_description(),
'default' => $this->get_default(),
),
$this->get_data_structure()
);
return $this->schema;
}
/**
* Returns non-blocking sanitization errors.
*
* @since 3.7
*
* @return WP_Error
*/
public function get_errors(): WP_Error {
return $this->errors;
}
/**
* Prepares a value before validation.
*
* @since 3.7
*
* @param mixed $value Value to format.
* @return mixed
*/
protected function prepare( $value ) {
return $value;
}
/**
* Sanitizes option's value, can be overridden for specific cases not handled by `rest_sanitize_value_from_schema()`.
* Can populate the `$errors` property with blocking and non-blocking errors: in case of non-blocking errors,
* the value is sanitized and can be stored.
*
* @since 3.7
*
* @param mixed $value Value to sanitize.
* @param Options $options All options.
* @return mixed The sanitized value. An instance of `WP_Error` in case of blocking error.
*/
protected function sanitize( $value, Options $options ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
return rest_sanitize_value_from_schema( $value, $this->get_data_structure(), static::key() );
}
/**
* Returns the default value.
*
* @since 3.7
*
* @return mixed
*/
abstract protected function get_default();
/**
* Returns the JSON schema part specific to this option.
*
* @since 3.7
*
* @return array Partial schema.
*
* @phpstan-return array{type: SchemaType}
*/
abstract protected function get_data_structure(): array;
/**
* Returns the description used in the JSON schema.
*
* @since 3.7
*
* @return string
*/
abstract protected function get_description(): string;
/**
* Returns a list of language terms.
*
* @since 3.7
*
* @return array
*
* @phpstan-return list<WP_Term>
*/
protected function get_language_terms(): array {
$language_terms = get_terms(
array(
'taxonomy' => 'language',
'hide_empty' => false,
)
);
return is_array( $language_terms ) ? $language_terms : array();
}
/**
* Adds a non-blocking error warning about unknown language slugs.
*
* @since 3.7
*
* @param array $language_slugs List of language slugs.
* @return void
*/
protected function add_unknown_languages_warning( array $language_slugs ): void {
if ( 1 === count( $language_slugs ) ) {
/* translators: %s is a language slug. */
$message = __( 'The language %s is unknown and has been discarded.', 'polylang' );
} else {
/* translators: %s is a list of language slugs. */
$message = __( 'The languages %s are unknown and have been discarded.', 'polylang' );
}
$this->errors->add(
sprintf( 'pll_unknown_%s_languages', static::key() ),
sprintf(
$message,
wp_sprintf_l(
'%l',
array_map(
function ( $slug ) {
return "<code>{$slug}</code>";
},
$language_slugs
)
)
),
'warning'
);
}
/**
* Adds information to the site health info array.
* Does nothing by default.
*
* @since 3.8
*
* @param Options $options An instance of the Options class providing additional configuration.
*
* @return array The updated site health information.
*/
public function get_site_health_info( Options $options ): array { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable
return array();
}
/**
* Renders site health information by appending additional fields.
*
* @since 3.8
*
* @param mixed $value The value to be added to the site health fields.
*
* @return array Updated array of site health information including the new fields.
*/
protected function format_single_value_for_site_health_info( $value ): array {
if ( empty( $value ) ) {
return array();
}
return array(
'label' => ucfirst( static::key() ),
'value' => $value,
);
}
/**
* Formats an array to display in options information.
*
* @since 3.8
*
* @param array<scalar> $array An array of formatted data.
* @return string
*/
protected function format_array_for_site_health_info( array $array ): string {
array_walk(
$array,
function ( &$value, $key ) {
$value = "$key => $value";
}
);
return '[' . implode( ', ', $array ) . ']';
}
}