Extension:ArticleToCategory2

MediaWiki extensions manual
Article To Category 2
Release status: unmaintained
px
Implementation Page action
Description Adds an inputbox to each category page. The content of new page will contain "[[category:]]" automatically. See doc. for optional features.
Author(s)
Latest version 1.3 (2018-02-03)
MediaWiki 1.29+
Database changes No
License GNU General Public License 2.0 or later
Download
  • $wgArticleToCategory2ConfigBlacklist
Quarterly downloads 14 (Ranked 161st)
Translate the ArticleToCategory2 extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

The Article To Category 2 extension adds an inputbox to each category page. The content of new page will contain "[[Category:]]" automatically.[1] See section Configuration for optional behavior.

InstallationEdit

Users of MediaWiki 1.33+ need to use the version for MediaWiki 1.35+.
  • Download and place the file(s) in a directory called ArticleToCategory2 in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php :
    wfLoadExtension( 'ArticleToCategory2' );
    $wgArticleToCategory2ConfigBlacklist=false;
    $wgGroupPermissions['*']['ArticleToCategory2'] = true;
    $wgGroupPermissions['*']['ArticleToCategory2AddCat'] = false;
    
  •   Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

ConfigurationEdit

User permissionEdit

$wgGroupPermissions['*']['ArticleToCategory2AddCat']

Set this flag to true and a second input box will be added, where the users may add categories into categories.

ParameterEdit

$wgArticleToCategory2ConfigBlacklist

Set this flag to true to enable the category blacklist in "MediaWiki:Add Article to Category 2 excluded categories" page (you need to create this page first). Usage (example):

== Excluded Categories from Add To Article 2 Extension ==

;My Excluded category 1
;My Excluded category 2

;Another one

If you don't like the name of this page, you can replace it by changing the following line in the GetExcludedCategories() function :

     $specialcatpage='Add Article to Category 2 excluded categories';

NotesEdit

  1. The text (i.e "Category" in English) depends on what language the MediaWiki is using.