wikifab/custom-recent-changes

There is no license information available for the latest version (1.1.1) of this package.

Installs: 2 304

Dependents: 0

Suggesters: 0

Security: 0

Stars: 3

Watchers: 3

Forks: 0

Open Issues: 0

Type:mediawiki-extension

1.1.1 2019-09-23 07:53 UTC

This package is auto-updated.

Last update: 2024-04-29 03:53:59 UTC


README

CustomRecentChanges redesigns the Special:RecentChanges page to make it easier to read.

Installation

  • Download the full archive of this repository
  • Extract and put CustomRecentChanges folder in the extensions directory.
  • Add the following line to the LocalSettings.php
wfLoadExtension('CustomRecentChanges');

Usage

The recent changes page is located at Special:DokitRecentChanges

Configuration

By default, it will display 5 namespaces

  • Page (0)
  • User (2)
  • File (6)
  • Category (14)
  • Group (220)

But you can add namespaces as many as you want by editing the following configurations variables

$wgRCNamespacesList

(array) Array of integers. In the filters, only display the specified namespaces.

Exemple :

<?php
    # LocalSettings.php 
    
    $wgRCNamespacesList = [
        0, // User
        2, // File
        14 // Category
    ];
?>

$wgRCNamespacesListIgnored

(array) Array of integers. In the filters, display all the namespaces but the ignored.

Exemple :

<?php
    # LocalSettings.php 
    
    // Will ignore the File namespace
    $wgRCNamespacesListIgnored = [
        2, // File
    ];
?>

Translation

As usual, the translation files are located in the i18n folder. You can translate / change the namespace buttons on the filter bar. Just add a translation to a file.

The key for translating a namespace button begins with customrecentchanges-namespace- and ends by the english or official namespace name in lowercase.

Exemple of a french for the Group namespace:

// fr.json
{
    "customrecentchanges-namespace-group": "Groupes"
}