Extension:ArticleCreationWorkflow/bg
ArticleCreationWorkflow Обявен статут: стабилен |
|
---|---|
Реализация | Потребителски интерфейс |
Описание | Помага на потребителите да създават нови страници. |
Автор(и) | |
Правило за съвместимост | release branches |
MediaWiki | 1.30+ |
Лиценз | MIT License |
Изтегляне | |
|
|
|
|
Преведете разширението ArticleCreationWorkflow, ако е налично в translatewiki.net | |
Проблеми | Отворени задачи · Съобщете за грешка |
ArticleCreationWorkflow helps users create new pages, intercepting article creation for new users and giving them wiki-configurable options such as using the Article wizard or creating a draft as a user subpage.
In order for users to be intercepted, they must have the createpage right, must not have the createinmainns right, the page they are trying to create must be in the main namespace (and not yet exist) and the page pointed to by $wgArticleCreationLandingPage must exist.
Инсталиране
- Ако използвате Vagrant , инсталирайте разширението с
vagrant roles enable articlecreationworkflow --provision
- Ръчно инсталиране
- Изтеглете и поставете файла (файловете) в директория, наречена
ArticleCreationWorkflow
във вашата директорияextensions/
. - На дъното на вашия LocalSettings.php добавете следния код:
wfLoadExtension( 'ArticleCreationWorkflow' );
- Готово – Отидете на Special:Version в уикито си, за да проверите дали разширението е успешно инсталирано.
Configuration settings
$wgArticleCreationLandingPage
(string): the name of the wiki page to which users should be redirected if intercepted.
$wgUseCustomLandingPageStyles
(bool): Whether to load custom CSS for the landing page.
User right
The extension adds a new user right called createpagemainns
which permits users to create new pages in the main namespace.
This right is given by default to all users.
Users without this right are prohibited from creating main namespace pages, and when they attempt to (by clicking on a red link, for example) they're redirected to the Article Creation Workflow landing page.
This extension is being used on one or more Wikimedia projects. This probably means that the extension is stable and works well enough to be used by such high-traffic websites. Look for this extension's name in Wikimedia's CommonSettings.php and InitialiseSettings.php configuration files to see where it's installed. A full list of the extensions installed on a particular wiki can be seen on the wiki's Special:Version page. |