Extension:FileList

Category:Unmaintained extensions#FileList Category:Extensions without a compatibility policyCategory:GPL licensed extensions
MediaWiki extensions manual
FileList
Release status: unmaintainedCategory:Unmaintained extensions
Implementation Tag Category:Tag extensions, MediaCategory:Media handling extensions, MyWiki Category:Personalization extensions, Page action Category:Page action extensions
Description Generates a dynamic file-list with an upload box at the insertion of <filelist />
Author(s) Jens Nyman, Simon Peeters (Nymanjenstalk)
Latest version 5.1 (2022-04-09)
MediaWiki 1.33Category:Extensions with manual MediaWiki version
License GNU General Public License 2.0 or later
Download Category:Extensions in GitHub version control
$wgFileListConfig['upload_anonymously']
<filelist>
Category:All extensionsCategory:Extensions not in ExtensionJson

What can this extension do?

This extension implements a new tag, <filelist />, which generates a list of all images or other media that were uploaded to the page. Also, the tag adds an input field to add a new file.(just for testing purpose)

Screenshot:

Installation

  • Download and place the file(s) in a directory called FileList in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php file:
    require_once "$IP/extensions/FileList/FileList.php";
    // set this to true if uploads need to be anonymous
    $wgFileListConfig['upload_anonymously'] = false;
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.Category:Extensions not using extension registration

Usage

Insert:

<filelist />

This will generate a FileList for the corresponding page.

More info

See GitHub.

Category:All extensions Category:Extensions in GitHub version control Category:Extensions not in ExtensionJson Category:Extensions not using extension registration Category:Extensions with manual MediaWiki version Category:Extensions without a compatibility policy Category:GPL licensed extensions Category:Media handling extensions Category:Page action extensions Category:Personalization extensions Category:SpecialMovepageAfterMove extensions Category:SpecialUploadComplete extensions Category:Tag extensions Category:UnknownAction extensions Category:Unmaintained extensions Category:UploadForm:BeforeProcessing extensions