1 | <?php |
||
16 | class PageDisplayOutputModifier { |
||
17 | |||
18 | /** |
||
19 | * @var boolean |
||
20 | */ |
||
21 | private $hideSubpageParent; |
||
22 | |||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | private $subpageByNamespace; |
||
27 | |||
28 | /** |
||
29 | * @since 1.0 |
||
30 | * |
||
31 | * @param boolean $hideSubpageParent |
||
32 | */ |
||
33 | 3 | public function hideSubpageParent( $hideSubpageParent ) { |
|
34 | 3 | $this->hideSubpageParent = $hideSubpageParent; |
|
35 | 3 | } |
|
36 | |||
37 | /** |
||
38 | * @since 1.0 |
||
39 | * |
||
40 | * @param array $subpageByNamespace |
||
41 | */ |
||
42 | 3 | public function setSubpageByNamespace( array $subpageByNamespace ) { |
|
45 | |||
46 | /** |
||
47 | * @since 1.0 |
||
48 | * |
||
49 | * @param OutputPage $outputPage |
||
50 | */ |
||
51 | 3 | public function modifyOutput( OutputPage $outputPage ) { |
|
66 | |||
67 | 1 | private function isSubpage( Title $title ) { |
|
84 | |||
85 | private function getPageTitle( Title $title ) { |
||
100 | |||
101 | private function hasEnabledSubpageByNamespace( $namespace ) { |
||
104 | |||
105 | } |
||
106 |
This method has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.