Extension:HtmlFromFile

From mediawiki.org
MediaWiki extensions manual
HtmlFromFile
Release status: unmaintained
Implementation Tag
Description Includes HTML snippets from files into wiki pages
Author(s) Constantin Berhard (ConnyOnnyOnnytalk)
MediaWiki
Database changes No
License Creative Commons Zero v1.0 Universal
Download
$wgHtmlFromFileMappings

The HtmlFromFile extension includes some HTML snippet in the rendering of a wiki page. In the wiki markup you add <htmlfromfile>someName</htmlfromfile>. The extension does a lookup for "someName" in the configured mapping array (see below) to get a complete file name and then directly forwards the contents of that file to the viewer's browser.

Installation

  • Download and place the file(s) in a directory called HtmlFromFile in your extensions/ folder.
  • Add the following code at the bottom of your LocalSettings.php file:
    require_once "$IP/extensions/HtmlFromFile/HtmlFromFile.php";
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Configuration parameters

$wgHtmlFromFileMappings
Array which maps short names for in-wiki usage to actual file names where the content is

See also