MediaWiki  1.29.1
ChangesListBooleanFilterGroup.php
Go to the documentation of this file.
1 <?php
2 
14  const TYPE = 'send_unselected_if_any';
15 
30  public function __construct( array $groupDefinition ) {
31  $groupDefinition['isFullCoverage'] = true;
32  $groupDefinition['type'] = self::TYPE;
33 
34  parent::__construct( $groupDefinition );
35  }
36 
40  protected function createFilter( array $filterDefinition ) {
41  return new ChangesListBooleanFilter( $filterDefinition );
42  }
43 
49  public function registerFilter( ChangesListBooleanFilter $filter ) {
50  $this->filters[$filter->getName()] = $filter;
51  }
52 
56  public function isPerGroupRequestParameter() {
57  return false;
58  }
59 }
ChangesListBooleanFilterGroup\isPerGroupRequestParameter
isPerGroupRequestParameter()
Check whether the URL parameter is for the group, or for individual filters.Defaults can also be defi...
Definition: ChangesListBooleanFilterGroup.php:56
ChangesListBooleanFilter
An individual filter in a boolean group.
Definition: ChangesListBooleanFilter.php:32
ChangesListFilter\getName
getName()
Definition: ChangesListFilter.php:272
ChangesListFilterGroup
Represents a filter group (used on ChangesListSpecialPage and descendants)
Definition: ChangesListFilterGroup.php:35
php
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
ChangesListBooleanFilterGroup\registerFilter
registerFilter(ChangesListBooleanFilter $filter)
Registers a filter in this group.
Definition: ChangesListBooleanFilterGroup.php:49
ChangesListBooleanFilterGroup\__construct
__construct(array $groupDefinition)
Create a new filter group with the specified configuration.
Definition: ChangesListBooleanFilterGroup.php:30
ChangesListBooleanFilterGroup
If the group is active, any unchecked filters will translate to hide parameters in the URL.
Definition: ChangesListBooleanFilterGroup.php:10
ChangesListBooleanFilterGroup\TYPE
const TYPE
Type marker, used by JavaScript.
Definition: ChangesListBooleanFilterGroup.php:14
ChangesListBooleanFilterGroup\createFilter
createFilter(array $filterDefinition)
Creates a filter of the appropriate type for this group, from the definition.Filter definition Change...
Definition: ChangesListBooleanFilterGroup.php:40
array
the array() calling protocol came about after MediaWiki 1.4rc1.