Localisation updates from https://translatewiki.net.
[mediawiki.git] / includes / search / NullIndexField.php
blob22f59987c5ec4523710d7ef86d84b028cb18fb88
1 <?php
3 /**
4 * Null index field - means search engine does not implement this field.
5 */
6 class NullIndexField implements SearchIndexField {
8 /**
9 * Get mapping for specific search engine
10 * @param SearchEngine $engine
11 * @return array|null Null means this field does not map to anything
13 public function getMapping( SearchEngine $engine ) {
14 return null;
17 /**
18 * Set global flag for this field.
20 * @param int $flag Bit flag to set/unset
21 * @param bool $unset True if flag should be unset, false by default
22 * @return $this
24 public function setFlag( $flag, $unset = false ) {
25 return $this;
28 /**
29 * Check if flag is set.
30 * @param int $flag
31 * @return int 0 if unset, !=0 if set
33 public function checkFlag( $flag ) {
34 return 0;
37 /**
38 * Merge two field definitions if possible.
40 * @param SearchIndexField $that
41 * @return SearchIndexField|false New definition or false if not mergeable.
43 public function merge( SearchIndexField $that ) {
44 return $that;
47 /**
48 * @inheritDoc
50 public function getEngineHints( SearchEngine $engine ) {
51 return [];