Extension:ContactPage/ru
Appearance
ContactPage Статус релиза: стабильно |
|
---|---|
Реализация | Служебная страница , Хук |
Описание | Предоставляет контактную форму для посетителей |
Автор(ы) | Daniel Kinzler, Sam Reed |
Последняя версия | Continuous updates |
Политика совместимости | Снэпшоты выходят вместе с MediaWiki. Мастер не имеет обратной совместимости. |
MediaWiki | >= 1.43 |
PHP | 5.4+ |
Изменения в БД | Нет |
Лицензия | GNU General Public License 2.0 или позднее |
Скачать | README |
Пример | nl.wikipedia.org |
|
|
Ежеквартальные загрузки | 46 (Ranked 87th) |
Переведите расширение ContactPage, если оно доступно на translatewiki.net | |
Роль Vagrant | contactpage |
Проблемы | Открытые задачи · Сообщить об ошибке |
Расширение ContactPage реализует контактную форму для посетителей. Он создает специальную страницу "Special:Contact", которая похожа на "Special:EmailUser", но имеет фиксированного получателя и может использоваться без регистрации.
Установка и настройка
- Скачайте и распакуйте файл(ы) в папку с названием
ContactPage
в вашей папкеextensions/
.
Вместо этого разработчикам и соавторам кода следует установить расширение из Git, используя:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/ContactPage - Добавьте следующий код в конце вашего файла LocalSettings.php :
wfLoadExtension( 'ContactPage' ); $wgContactConfig['default'] = [ 'RecipientUser' => 'WikiUser', // Must be the name of a valid account which also has a verified e-mail-address added to it. 'SenderName' => 'Contact Form on ' . $wgSitename, // "Contact Form on" needs to be translated 'SenderEmail' => null, // Defaults to $wgPasswordSender, may be changed as required 'RequireDetails' => true, // Either "true" or "false" as required 'IncludeIP' => true, // Either "true" or "false" as required 'MustBeLoggedIn' => true, // Check if the user is logged in before rendering the form. Either "true" or "false" as required 'NameReadonly' => false, // Set to "true" to make the name field read-only 'EmailReadonly' => false, // Set to "true" to make the email address field read-only 'SubjectReadonly' => false, // Set to "true" to make the subject line field read-only 'MustHaveEmail' => false, // Set to "true" to require that the user submitting the form must have an associated email address 'AdditionalFields' => [ 'Text' => [ 'label-message' => 'emailmessage', 'type' => 'textarea', 'rows' => 20, 'required' => true, // Either "true" or "false" as required ], ], 'RLModules' => [], // Resource loader modules to add to the form display page. 'RLStyleModules' => [] // Resource loader CSS modules to add to the form display page. ];
- See the README file for further options to customize and adapt as it convenes.
- Готово – Перейдите на страницу Special:Version на своей вики, чтобы удостовериться в том, что расширение успешно установлено.
You can require a CAPTCHA test for the contact page if you have the ConfirmEdit extension installed. CAPTCHAs are enabled by adding to "LocalSettings.php" below the invocation of both extensions.
$wgCaptchaTriggers['contactpage'] = true;
Дальнейшая настройка
Adding a link to special page "Contact" to the footer
- Add the following code (with the correct URL inserted) to your "LocalSettings.php" file:
$wgHooks['SkinAddFooterLinks'][] = function( Skin $skin, string $key, array &$footerlinks ) { if ( $key === 'places' ) { $footerlinks['contact'] = Html::element( 'a', [ 'href' => 'https://www.example.org/wiki/Special:Contact', // URL to "Special:Contact" 'rel' => 'noreferrer noopener' // not required, but recommended for security reasons ], $skin->msg( 'contactpage-label' )->text() ); }; };
- Add the label for "Special:Contact" to system message MediaWiki:Contactpage-label.
Creating complex forms
See HTMLForm and related pages for more information on the possibilities available to create more complex forms.
Проблемы
Users of some hosting providers such as SiteGround and Amazon SES may get a PHP mail error or one that says that the FROM email address is not configured in the server, despite $wgPasswordSender
being configured correctly and other email functionality working as expected.
A fix for this issue is described here.
См. также
- Extension:EmailPage - Позволяет отправлять полностью отрисованные статьи со встроенным CSS пользователям, группам или спискам контактов
- Extension:CIForms - Формы с автоматической проверкой, вопросами с множественным выбором и тестами cloze
Это расширение используется в одном или нескольких проектах Викимедиа. Вероятно, это означает, что расширение стабильно и работает достаточно хорошо, чтобы использоваться такими сайтами с высоким трафиком. Найдите название этого расширения в файлах конфигурации Викимедиа CommonSettings.php и InitialiseSettings.php, чтобы узнать, где оно установлено. Полный список расширений, установленных на конкретной вики, можно увидеть на странице Special:Version wiki. |
Это расширение включено в следующие вики-фермы/хостинги и/или пакеты: Это не исчерпывающий список. Некоторые вики-фермы/хостинги и/или пакеты могут содержать это расширение, даже если они не перечислены здесь. Всегда сверяйтесь со своими вики-фермами/хостингами или комплектами/бандлами для подтверждения. |
Categories:
- Stable extensions/ru
- Special page extensions/ru
- Hook extensions/ru
- GPL licensed extensions/ru
- Extensions in Wikimedia version control/ru
- All extensions/ru
- Extensions used on Wikimedia/ru
- Extensions included in Canasta/ru
- Extensions included in Miraheze/ru
- Extensions included in ProWiki/ru
- Extensions included in WikiForge/ru
- Contact form extensions/ru