Yoast\WP\SEO\Schema_Aggregator\Infrastructure\Elements_Context_Map

Elements_Context_Map_Repository{}Yoast 1.0└─ Elements_Context_Map_Repository_Interface

Repository for the elements-context map.

Хуков нет.

Использование

$Elements_Context_Map_Repository = new Elements_Context_Map_Repository();
// use class methods

Методы

  1. public __construct( Map_Loader_Interface $map_loader )
  2. public get_map()
  3. public save_map( array $map )

Код Elements_Context_Map_Repository{} Yoast 27.7

class Elements_Context_Map_Repository implements Elements_Context_Map_Repository_Interface {

	/**
	 * The elements-context map.
	 *
	 * @var array<array<string, string>>|null
	 */
	private $map = null;

	/**
	 * The map loader strategy.
	 *
	 * @var Map_Loader_Interface
	 */
	private $map_loader;

	/**
	 * Constructor.
	 *
	 * @param Map_Loader_Interface $map_loader The map loader strategy.
	 */
	public function __construct( Map_Loader_Interface $map_loader ) {
		$this->map_loader = $map_loader;
	}

	/**
	 * Retrieves the elements-context map.
	 *
	 * @return array<array<string, string>> The elements context-map.
	 */
	public function get_map(): array {
		$this->map ??= $this->map_loader->load();
		return $this->map;
	}

	/**
	 * Saves the elements-context map.
	 *
	 * @codeCoverageIgnore -- This is just a setter.
	 *
	 * @param array<array<string, string>> $map The elements-context map to besaved.
	 *
	 * @return void
	 */
	public function save_map( array $map ): void {
		$this->map = $map;
	}
}