MediaWiki  1.28.1
SearchIndexFieldDefinition.php
Go to the documentation of this file.
1 <?php
2 
11 abstract class SearchIndexFieldDefinition implements SearchIndexField {
17  protected $name;
23  protected $type;
29  protected $flags = 0;
34  protected $subfields = [];
35 
41  public function __construct( $name, $type ) {
42  $this->name = $name;
43  $this->type = $type;
44  }
45 
50  public function getName() {
51  return $this->name;
52  }
53 
58  public function getIndexType() {
59  return $this->type;
60  }
61 
69  public function setFlag( $flag, $unset = false ) {
70  if ( $unset ) {
71  $this->flags &= ~$flag;
72  } else {
73  $this->flags |= $flag;
74  }
75  return $this;
76  }
77 
83  public function checkFlag( $flag ) {
84  return $this->flags & $flag;
85  }
86 
93  public function merge( SearchIndexField $that ) {
94  // TODO: which definitions may be compatible?
95  if ( ( $that instanceof self ) && $this->type === $that->type &&
96  $this->flags === $that->flags && $this->type !== self::INDEX_TYPE_NESTED
97  ) {
98  return $that;
99  }
100  return false;
101  }
102 
107  public function getSubfields() {
108  return $this->subfields;
109  }
110 
116  public function setSubfields( array $subfields ) {
117  $this->subfields = $subfields;
118  return $this;
119  }
120 
126  abstract public function getMapping( SearchEngine $engine );
127 
128 }
the array() calling protocol came about after MediaWiki 1.4rc1.
setFlag($flag, $unset=false)
Set global flag for this field.
setSubfields(array $subfields)
Set subfields.
SearchIndexFieldDefinition[] $subfields
Subfields.
int $type
Type of the field, one of the constants above.
__construct($name, $type)
SearchIndexFieldDefinition constructor.
merge(SearchIndexField $that)
Merge two field definitions if possible.
Basic infrastructure of the field definition.
checkFlag($flag)
Check if flag is set.
int $flags
Bit flags for the field.
the value to return A Title object or null for latest all implement SearchIndexField $engine
Definition: hooks.txt:2736
getMapping(SearchEngine $engine)
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres as and are nearing end of but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
Definition: postgres.txt:22
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at name
Definition: design.txt:12
Definition of a mapping for the search index field.
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database etc For and for historical it also represents a few features of articles that don t involve their such as access rights See also title txt Article Encapsulates access to the page table of the database The object represents a an and maintains state such as flags
Definition: design.txt:34