Manual:Подвал (Footer)
Добавление ссылок в подвал
Версия MediaWiki: | ≥ 1.35 |
You can do it in LocalSettings.php . See the examples for:
- Внутренние ссылки
$wgHooks['SkinAddFooterLinks'][] = function ( Skin $skin, string $key, array &$footerlinks ) {
if ( $key === 'places' ) {
$footerlinks['test'] = Html::rawElement( 'a', [
'href' => Title::newFromText(
$skin->msg( 'test-page' )->inContentLanguage()->text()
)->getFullURL()
], $skin->msg( 'test-desc' )->escaped() );
};
};
- Внешние ссылки
$wgHooks['SkinAddFooterLinks'][] = function ( Skin $skin, string $key, array &$footerlinks ) {
if ( $key === 'places' ) {
$footerlinks['test'] = Html::rawElement( 'a',
[
'href' => 'https://www.example.org/wiki/Project:Imprint',
'rel' => 'noreferrer noopener' // not required, but recommended for security reasons
],
$skin->msg( 'test-desc' )->escaped() // test-desc is an i18n message of the text
);
};
};
In the above examples, "test-page" and "test-desc" are the keys for the system messages added via the code. Do not forget to add the desired text to the pages "MediaWiki:Test-page" and "MediaWiki:Test-desc", respectively, after you added the code for the extra footer links to the "LocalSettings.php" file.
Add text to the footer
Версия MediaWiki: | ≥ 1.35 |
You can also add custom text through LocalSettings.php . Here is an example to add wikitext to the footer:
$wgHooks['SkinAddFooterLinks'][] = function ( Skin $skin, string $key, array &$footerlinks ) {
if ( $key === 'info' ) {
$footerlinks['tagline'] = $skin->msg( 'footer-tagline' )->parse();
}
};
This adds footer-tagline
as a key for the system message to be displayed in the footer.
After adding the code to LocalSettings.php, please edit the MediaWiki:Footer-tagline
page to edit the newly-added footer text.
Настройка встроенных элементов
Вы также можете настроить отдельные встроенные элементы, изменив определенные страницы или параметры:
lastmod
- Редактируется MediaWiki:Lastmodifiedat. Если $wgMaxCredits включена то редактируете MediaWiki:Lastmodifiedatby. Вы также можете редактировать MediaWiki:othercontribs который показывает других участников. (6518)
credits
-
- Если $wgMaxCredits не равно нулю, то показываются редакторы страницы.
- то есть установите
$wgMaxCredits = 10;
или другое число.
copyright
- Редактируется в MediaWiki:Copyright. Параметр $1 на данной странице заменяется на ссылку об использовании авторских прав в Вашей Вики. В LocalSettings.php $wgRightsText для текстовой ссылки установите либо в переменной $wgRightsPage или в $wgRightsUrl с ссылкой на расположение внутренней вики страницы или внешний URL адрес.
privacy
- Это только ссылка. Задайте отображаемый текст ссылки в MediaWiki:Privacy и саму целевую вики-страницу в MediaWiki:Privacypage.
about
- Это только ссылка. Задайте отображаемый текст ссылки в MediaWiki:Aboutsite и саму целевую вики-страницу в MediaWiki:Aboutpage.
disclaimer
- Это только ссылка. Задайте отображаемый текст ссылки в MediaWiki:Disclaimers и саму целевую вики-страницу в MediaWiki:Disclaimerpage.
tagline
- в настоящее время не используется в подвале If you would like to add text to the footer, see #Add text to the footer.
Чтобы полностью удалить ссылки на «политику конфиденциальности», отказ от ответственности и другие ссылки в подвале, просто замените текст ссылки одним тире («-
»).
Изображения
- См.: $wgFooterIcons .