Extension:ArticleRatings

This page is a translated version of the page Extension:ArticleRatings and the translation is 100% complete.
Manuel des extensions MediaWiki
ArticleRatings
État de la version : stable
Implémentation Balise , Page spéciale
Description Ajoute une interface complexe pour donner des notes aux pages.
Auteur(s) Adam Carter
Dernière version 2.6
MediaWiki >= 1.39.0
Modifie la base
de données
Oui
Tables ratings
Licence Licence publique générale GNU v2.0 ou supérieur
Téléchargement
README
Exemple Brickimedia
  • $wgAREUseInitialRatings
  • $wgARENamespaces
‎<rating />
change-rating
Téléchargements trimestriels 3 (Ranked 133rd)
Traduire l’extension ArticleRatings sur translatewiki.net si elle y est disponible
Problèmes Tâches ouvertes · Signaler un bogue

L'extension ArticleRatings ajoute une interface pour noter les pages. Les utilisateurs privilégiés (ceux avec le droit d'utilisateur change-rating, par défaut membres du groupe reviewers) verront un lien sur la boîte à outils des habillages pris en charge et ils pourront utiliser l'interface Special:ChangeRating pour modifier la notation des pages.

This extension was developed for Brickimedia, and is not as portable as it could be.

Installation

  • Téléchargez et placez le(s) fichier(s) dans un répertoire appelé ArticleRatings dans votre dossier extensions/.
    Les développeurs et les contributeurs au code doivent à la place installer l'extension à partir de Git en utilisant:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/ArticleRatings
  • Ajoutez le code suivant à la fin de votre fichier LocalSettings.php  :
    wfLoadExtension( 'ArticleRatings' );
    
    Configure MediaWiki:Are-ratings interface message on-wiki; see #Messages below for more info. This is not optional!
  •   Fait – Accédez à Special:Version sur votre wiki pour vérifier que l'extension a bien été installée.

User rights

  • change-rating – new user right allows user to change the ratings of pages.

Tags

‎<rating /> adds the rating of a page to a page. ‎<rating /> on its own will add the rating of the page it is on, and <rating page="title" /> will give the rating of title.

Special pages

  • Special:ChangeRating – interface for changing pages' ratings.
  • Special:MassRatings – interface for getting the ratings of many pages at once.

Messages

  • MediaWiki:Are-ratings – JSON file giving the name, codename (has to be 2 characters long), image, and link, for each rating. Should be an array of objects, in PHP-valid JSON. See Brickipedia for an example. The codename is just a 2 character string used by the software to identify the ratings, it doesn't matter what it is, as long as each rating's is different. Whichever rating comes first will be the default rating (the one used before the rating has been changed)

Variables

  • $wgARENamespaces = $wgContentNamespaces; - Array of namespace numbers/constants that are allowed to have ratings on them.
  • $wgAREUseInitialRatings = false; - If true, the ratings tag has an init-rating parameter that wil set the initial rating to the codename supplied, not the default. Not recommended for production use, but can be used as a workaround to allow bots to use the extension.