Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Match MW changes to $wgSpecialPageGroups #1214

Merged
merged 1 commit into from
Oct 19, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions includes/specials/SMW_SpecialAsk.php
Original file line number Diff line number Diff line change
Expand Up @@ -653,4 +653,8 @@ protected function getNavigationBar( SMWQueryResult $res, array $urlArgs ) {

return $navigation;
}

protected function getGroupName() {
return 'smw_group';
}
}
4 changes: 4 additions & 0 deletions includes/specials/SMW_SpecialBrowse.php
Original file line number Diff line number Diff line change
Expand Up @@ -454,4 +454,8 @@ private function addExternalHelpLinkFor( $key ) {

$this->addHelpLink( wfMessage( $key )->escaped(), true );
}

protected function getGroupName() {
return 'smw_group';
}
}
3 changes: 3 additions & 0 deletions includes/specials/SMW_SpecialOWLExport.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,7 @@ protected function exportPages( $pages ) {
$this->export_controller->printPages( $pages, $recursive, $date );
}

protected function getGroupName() {
return 'smw_group';
}
}
4 changes: 4 additions & 0 deletions includes/specials/SMW_SpecialPageProperty.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,4 +157,8 @@ public function execute( $query ) {
$wgOut->addHTML( $html );
SMWOutputs::commitToOutputPage( $wgOut ); // make sure locally collected output data is pushed to the output!
}

protected function getGroupName() {
return 'smw_group';
}
}
3 changes: 3 additions & 0 deletions includes/specials/SMW_SpecialSMWAdmin.php
Original file line number Diff line number Diff line change
Expand Up @@ -320,4 +320,7 @@ public function encodeJson( array $input ) {
return FormatJson::encode( $input, true );
}

protected function getGroupName() {
return 'smw_group';
}
}
4 changes: 4 additions & 0 deletions includes/specials/SMW_SpecialTypes.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,8 @@ protected function getTypeProperties( $typeLabel ) {

return $result;
}

protected function getGroupName() {
return 'pages';
}
}
4 changes: 4 additions & 0 deletions includes/specials/SpecialConcepts.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,4 +113,8 @@ public function execute( $param ) {

$this->getOutput()->addHTML( $this->getHtml( $diWikiPages, $limit, $from, $until ) );
}

protected function getGroupName() {
return 'pages';
}
}
3 changes: 3 additions & 0 deletions includes/specials/SpecialProperties.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,7 @@ private function getLimitOffset() {
return wfCheckLimits();
}

protected function getGroupName() {
return 'pages';
}
}
4 changes: 4 additions & 0 deletions includes/specials/SpecialSemanticStatistics.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,8 @@ public function execute( $param ) {
)->parseAsBlock()
);
}

protected function getGroupName() {
return 'wiki';
}
}
3 changes: 3 additions & 0 deletions includes/specials/SpecialUnusedProperties.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,7 @@ private function getLimitOffset() {
return wfCheckLimits();
}

protected function getGroupName() {
return 'maintenance';
}
}
3 changes: 3 additions & 0 deletions includes/specials/SpecialWantedProperties.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,7 @@ private function getLimitOffset() {
return wfCheckLimits();
}

protected function getGroupName() {
return 'maintenance';
}
}
3 changes: 3 additions & 0 deletions src/MediaWiki/Specials/SpecialSearchByProperty.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,7 @@ private function getLimitOffset() {
return wfCheckLimits();
}

protected function getGroupName() {
return 'smw_group';
}
}