Jump to content

Extension:DismissableSiteNotice/fr

From mediawiki.org
This page is a translated version of the page Extension:DismissableSiteNotice and the translation is 5% complete.
Manuel des extensions MediaWiki
DismissableSiteNotice
État de la version : stable
Implémentation Habillage , MyWiki
Description Allows users to close the site notice
Auteur(s) Brooke Vibberdiscussion
Dernière version continuous updates
Politique de compatibilité Versions ponctuelles alignées avec MediaWiki. Le master n'est pas compatible arrière.
MediaWiki >= 1.43
Modifie la base
de données
Non
Licence Licence publique générale GNU v2.0 ou supérieur
Téléchargement
  • $wgMajorSiteNoticeID
  • $wgDismissableSiteNoticeForAnons
Téléchargements trimestriels 62 (Ranked 81st)
Utilisé par les wikis publics 2,711 (Ranked 188th)
Traduire l’extension DismissableSiteNotice sur translatewiki.net si elle y est disponible
Problèmes Tâches ouvertes · Signaler un bogue

The DismissableSiteNotice extension allows users to close the site notice, using cookies.

Installation

  • Téléchargez et placez le(s) fichier(s) dans un répertoire appelé DismissableSiteNotice 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/DismissableSiteNotice
  • Ajoutez le code suivant à la fin de votre fichier LocalSettings.php  :
    wfLoadExtension( 'DismissableSiteNotice' );
    
  • Configure as required.
  • Yes Fait – Accédez à Special:Version sur votre wiki pour vérifier que l'extension a bien été installée.

Configuration

This extension provides two configuration parameters:

$wgMajorSiteNoticeID
Integer. La valeur est stockée dans un cookie. When a user decides to close the site notice, the current value of $wgMajorSiteNoticeID is saved as well, and the closed notice is not shown again. $wgMajorSiteNoticeID now can be incremented when a new text is set up as site notice. If $wgMajorSiteNoticeID has in-between been incremented, then the site notice is shown again, even if the user closed an older site notice before.
$wgDismissableSiteNoticeForAnons
This allows setting whether or not it should be possible for anonymous visitors of the wiki to dismiss the site notice shown. Defaults to "false". Available for MW 1.25 +

Usage

When you add a new site notice and want everyone to see it, change the number on the created page "MediaWiki:Sitenotice id" by one (e.g., if it would be 5, you'd replace the page with the number 6 and so on).

The extension behavior is that it will remember the dismissal by the user and only reset after the number in MediaWiki:Sitenotice_id has been raised. This allows a wiki to make minor updates to a notice without causing it to show again for everybody.