Extension:DismissableSiteNotice/ru

This page is a translated version of the page Extension:DismissableSiteNotice and the translation is 35% complete.
Справка по расширениям MediaWiki
DismissableSiteNotice
Статус релиза: стабильно
Реализация Тема оформления , MyWiki
Описание Allows users to close the sitenotice
Автор(ы) Brooke Vibberобсуждение
Последняя версия continuous updates
Политика совместимости Snapshots releases along with MediaWiki. Master is not backward compatible.
MediaWiki >= 1.42
Изменения в БД Нет
Лицензия GNU General Public License 2.0 или позднее
Скачать
  • $wgMajorSiteNoticeID
  • $wgDismissableSiteNoticeForAnons
Ежеквартальные загрузки 53 (Ranked 98th)
Использование общедоступными вики 2,711 (Ranked 188th)
Переведите расширение DismissableSiteNotice, если оно доступно на translatewiki.net
Проблемы Открытые задачи · Сообщить об ошибке

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

Установка

  • Скачайте и распакуйте файл(ы) в папку с названием DismissableSiteNotice в вашей папке extensions/.
    Вместо этого разработчикам и соавторам кода следует установить расширение из Git, используя:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/DismissableSiteNotice
  • Добавьте следующий код в конце вашего файла LocalSettings.php :
    wfLoadExtension( 'DismissableSiteNotice' );
    
  • Configure as required.
  •   Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.

Настройка

This extension provides two configuration parameters:

$wgMajorSiteNoticeID
Целое число. Значение хранится в куки. When a user decides to close the sitenotice, 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 sitenotice. If $wgMajorSiteNoticeID has inbetween been incremented, then the sitenotice is shown again, even if the user closed an older sitenotice before.
$wgDismissableSiteNoticeForAnons
This allows to set whether or not it should be possible for anonymous visitors of the wiki to dismiss the sitenotice shown. По умолчанию "false". Доступно для MW 1.25 +

Использование

When you add a new sitenotice 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.