Extension:ShowMe/ru

From mediawiki.org
This page is a translated version of the page Extension:ShowMe and the translation is 50% complete.
This extension is professionally maintained by the WikiTeq team.
WikiTeq provides official support for MediaWiki LTS releases only. It may work with other MediaWiki releases.
Справка по расширениям MediaWiki
ShowMe
Статус релиза: стабильно
Реализация Тег
Описание Shows or hides selected elements on the page
Автор(ы) Ike Hecht (tosfosобсуждение)
Поддерживающий(ие) WikiTeq team
Последняя версия 0.2.0 ()
Политика совместимости В расширении есть соответствуюшая ветвь для каждого релиза MediaWiki, который является релизом долгосрочной поддержки (Long Term Support release).
MediaWiki 1.35, 1.39
Изменения в БД Нет
Лицензия GNU General Public License 2.0 или позднее
Скачать
README
Ежеквартальные загрузки 1 (Ranked 148th)
Переведите расширение ShowMe, если оно доступно на translatewiki.net
Проблемы Открытые задачи · Сообщить об ошибке

The ShowMe extension allows inserting a drop down or unordered list into pages, that will show different elements on the page depending on which option is selected.

This extension was created for WikiWorks.

Установка

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

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

Use the <showme> tag. It has an optional name parameter, which can set the name and id of the <select> element. Each line between the tags should contain an option. It must consist of the text to be shown, followed by a pipe, followed by the class name of an element (or elements) on the page which should be shown when this option is selected. While one option is selected, the elements corresponding to all other options become hidden. To avoid flashing of elements that are supposed to be hidden, you can optionally add style="display: none;" to every option other than the first.

Примеры

Dropdown

<showme type="dropdown">
Text for Option 1|opt-1
And another option|opt-2
</showme>
<div class="opt-1">
Some text shown when clicking the first option.
</div>
<div class="opt-2" style="display: none;">
Here goes the text shown for the second option.
</div>

Unordered list

<showme type="ul">
Text for Option 1|opt-1
And another option|opt-2
</showme>
<div class="opt-1">
Some text shown when clicking the first option.
</div>
<div class="opt-2" style="display: none;">
Here goes the text shown for the second option.
</div>

Галерея