Extension:HtmlFromFile/zh

From mediawiki.org
This page is a translated version of the page Extension:HtmlFromFile and the translation is 10% complete.
MediaWiki扩展手册
HtmlFromFile
发行状态: 不再維護
实现 标签
描述 Includes HTML snippets from files into wiki pages
作者 Constantin Berhard (ConnyOnnyOnny留言)
MediaWiki
数据库更改
许可协议 知识共享零 v1.0 通用
下載

GitLab:

注意:
无法由translatewiki.net
提供本地化更新。

$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

  • 下载文件,并将其放置在您extensions/文件夹中的HtmlFromFile目录内。
  • 将下列代码放置在您的LocalSettings.php 的底部:
    require_once "$IP/extensions/HtmlFromFile/HtmlFromFile.php";
    
  • Yes 完成 – 在您的wiki上导航至Special:Version,以验证已成功安装扩展。

Configuration parameters

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

See also