MediaWiki REL1_31
CategoryPage.php
Go to the documentation of this file.
1<?php
28class CategoryPage extends Article {
29 # Subclasses can change this to override the viewer class.
30 protected $mCategoryViewerClass = CategoryViewer::class;
31
35 protected $mPage;
36
41 protected function newPage( Title $title ) {
42 // Overload mPage with a category-specific page
43 return new WikiCategoryPage( $title );
44 }
45
46 function view() {
47 $request = $this->getContext()->getRequest();
48 $diff = $request->getVal( 'diff' );
49 $diffOnly = $request->getBool( 'diffonly',
50 $this->getContext()->getUser()->getOption( 'diffonly' ) );
51
52 if ( $diff !== null && $diffOnly ) {
53 parent::view();
54 return;
55 }
56
57 // Avoid PHP 7.1 warning of passing $this by reference
58 $categoryPage = $this;
59
60 if ( !Hooks::run( 'CategoryPageView', [ &$categoryPage ] ) ) {
61 return;
62 }
63
64 $title = $this->getTitle();
65 if ( $title->inNamespace( NS_CATEGORY ) ) {
66 $this->openShowCategory();
67 }
68
69 parent::view();
70
71 if ( $title->inNamespace( NS_CATEGORY ) ) {
72 $this->closeShowCategory();
73 }
74
75 # Use adaptive TTLs for CDN so delayed/failed purges are noticed less often
76 $outputPage = $this->getContext()->getOutput();
77 $outputPage->adaptCdnTTL( $this->mPage->getTouched(), IExpiringStore::TTL_MINUTE );
78 }
79
80 function openShowCategory() {
81 # For overloading
82 }
83
84 function closeShowCategory() {
85 // Use these as defaults for back compat --catrope
86 $request = $this->getContext()->getRequest();
87 $oldFrom = $request->getVal( 'from' );
88 $oldUntil = $request->getVal( 'until' );
89
90 $reqArray = $request->getValues();
91
92 $from = $until = [];
93 foreach ( [ 'page', 'subcat', 'file' ] as $type ) {
94 $from[$type] = $request->getVal( "{$type}from", $oldFrom );
95 $until[$type] = $request->getVal( "{$type}until", $oldUntil );
96
97 // Do not want old-style from/until propagating in nav links.
98 if ( !isset( $reqArray["{$type}from"] ) && isset( $reqArray["from"] ) ) {
99 $reqArray["{$type}from"] = $reqArray["from"];
100 }
101 if ( !isset( $reqArray["{$type}to"] ) && isset( $reqArray["to"] ) ) {
102 $reqArray["{$type}to"] = $reqArray["to"];
103 }
104 }
105
106 unset( $reqArray["from"] );
107 unset( $reqArray["to"] );
108
109 $viewer = new $this->mCategoryViewerClass(
110 $this->getContext()->getTitle(),
111 $this->getContext(),
112 $from,
113 $until,
114 $reqArray
115 );
116 $out = $this->getContext()->getOutput();
117 $out->addHTML( $viewer->getHTML() );
118 $this->addHelpLink( 'Help:Categories' );
119 }
120
124
125 function setCategoryViewerClass( $class ) {
126 $this->mCategoryViewerClass = $class;
127 }
128}
Class for viewing MediaWiki article and history.
Definition Article.php:35
getContext()
Gets the context this Article is executed in.
Definition Article.php:2031
getTitle()
Get the title object of the article.
Definition Article.php:181
addHelpLink( $to, $overrideBaseUrl=false)
Adds help link with an icon via page indicators.
Definition Article.php:1523
getUser( $audience=Revision::FOR_PUBLIC, User $user=null)
Call to WikiPage function for backwards compatibility.
Definition Article.php:2348
Special handling for category description pages, showing pages, subcategories and file that belong to...
setCategoryViewerClass( $class)
newPage(Title $title)
view()
This is the default action of the index.php entry point: just view the page of the given title.
WikiCategoryPage $mPage
Represents a title within MediaWiki.
Definition Title.php:39
Special handling for category pages.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction you ll probably need to make sure the header is varied on $request
Definition hooks.txt:2806
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
Definition hooks.txt:864
const NS_CATEGORY
Definition Defines.php:88