# elasticpress/5.3.5/includes/classes/SearchAlgorithms.php

ElasticPress, version 5.3.5. 93 lines.

- Page: https://pluginprobe.com/plugins/elasticpress/5.3.5/code/includes/classes/SearchAlgorithms.php
- Raw: https://pluginprobe.com/plugins/elasticpress/5.3.5/raw/includes/classes/SearchAlgorithms.php
- Modified: 2022-08-31T13:36:34+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/elasticpress/5.3.5/code/includes/classes/SearchAlgorithms.php#L10-L20`.

```php
<?php
/**
 * Handles search algorithms registration and storage
 *
 * @since   4.3.0
 * @package elasticpress
 */

namespace ElasticPress;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Class for handling all SearchAlgorithm
 */
class SearchAlgorithms {

	/**
	 * Array of registered search algorithms
	 *
	 * @var array
	 */
	private $registered_search_algorithms = [];

	/**
	 * Register a search algorithm
	 *
	 * @param SearchAlgorithm $search_algorithm Instance of Search Algorithm.
	 */
	public function register( SearchAlgorithm $search_algorithm ) {
		$this->registered_search_algorithms[ $search_algorithm->get_slug() ] = $search_algorithm;
	}

	/**
	 * Get a search algorithm instance given a slug
	 *
	 * @param  string $slug Search Algorithm slug
	 * @return SearchAlgorithm
	 */
	public function get( string $slug ) {
		return ( ! empty( $this->registered_search_algorithms[ $slug ] ) ) ?
			$this->registered_search_algorithms[ $slug ] :
			$this->registered_search_algorithms['default'];
	}

	/**
	 * Unregister a search algorithm.
	 *
	 * A search algorithm can only be unregistered if it is not the only one left.
	 *
	 * @param string $slug Search Algorithm slug
	 * @return bool Whether the search algorithm was unregistered or not.
	 */
	public function unregister( string $slug ) {
		if ( isset( $this->registered_search_algorithms[ $slug ] ) && count( $this->registered_search_algorithms ) >= 2 ) {
			unset( $this->registered_search_algorithms[ $slug ] );
			return true;
		}
		return false;
	}

	/**
	 * Get all search algorithm instances
	 *
	 * @param boolean $slug_only True returns an array of only string slugs.
	 * @return array
	 */
	public function get_all( $slug_only = false ) {
		if ( $slug_only ) {
			return array_keys( $this->registered_search_algorithms );
		}

		return $this->registered_search_algorithms;
	}

	/**
	 * Return singleton instance of class
	 *
	 * @return object
	 */
	public static function factory() {
		static $instance = false;

		if ( ! $instance ) {
			$instance = new self();
		}

		return $instance;
	}
}

```
