Extension:DPLforum

From mediawiki.org
MediaWiki extensions manual
DPLforum
Release status: stable
Implementation Tag , Parser function
Description DynamicPageList -based forum software
Author(s) Ross McClure
Latest version 3.7.2 (2022-09-13)
MediaWiki 1.25+
Database changes No
License GNU General Public License 2.0 or later
Download
Example www.shoutwiki.com Uses Extension:InputBox
Quarterly downloads 15 (Ranked 135th)
Public wikis using 5,794 (Ranked 39th)
Translate the DPLforum extension if it is available at translatewiki.net
Issues Open tasks · Report a bug

The DPLforum extension is adapted from DynamicPageList and displays forum-style layouts.

New features in version 3.0 include author listings, compact display, and full multipage support. Version 3.1 introduces prefix matching, for better interoperability with InputBox .

DPLforum also introduces a new namespace, Forum (and its talkspace); by default, the numeric index for this namespace is 110.

Installation[edit]

  • Download and move the extracted DPLforum folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/DPLforum
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'DPLforum' );
    
  • Yes Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Parameters[edit]

DPLforum expects parameters in the form of a linebreak-separated list of assignments, as shown here.

<table><forum>
 category=CategoryName
 parameter1=value
 parameter2=value
 </forum></table>

Content parameters[edit]

category={page} Adds a category to the set of categories. Only pages that belong to each of these categories will be displayed.
notcategory={page} Adds a category to the set of exclusions. Pages that are not in these categories will be displayed.
namespace={text} Specifies the namespace in which to search. Only one namespace may be specified.
prefix={text} Specifies a prefix to match in the title. Only pages whose titles begin with the specified prefix will be displayed. (New in version 3.1)
start={number} Excludes the first number results from the listing.
count={number} Lists no more than number results. Currently limited up to 50 results, but the results aren't limited to 50 if this parameter is not specified.
title={page} If specified, this object becomes a forum-style link to the given page. Other parameters still apply.

Structural parameters[edit]

mode Specifies the mode of output.
  • mode=table - Default. Displays each entry in a ‎<tr> block. ‎<table> tags are not included, so that each table may be given custom properties.
  • mode=list - Displays each entry in a ‎<li> block. As above, tags such as ‎<ol> or ‎<ul> are omitted.
  • mode=none - Only separates entries with a ‎<br>...‎</br> tag.
  • mode=count - Returns only the number of entries that match the given parameters. (New in version 3.2)
compact Allows for individual ‎<td> tags to be combined together where appropriate.
  • compact=author - Combines the Title and Author cells.
  • compact=editor - Combines the Edit and Editor cells.
  • compact=all - Combines both.
addcreationdate=true Displays each entry's date of creation.
addauthor=true Displays the original author of each entry.
addlasteditor=true Displays the last editor of each entry.
addlastedit=false Hides each entry's last edit time; shown by default.

Output parameters[edit]

ordermethod Specifies the order in which entries are listed.
  • ordermethod=lastedit - Default. Sorts entries by the last time they were edited.
  • ordermethod=created - Sorts entries by the time of their creation.
  • ordermethod=pageid - Sorts entries by their ID numbers; usually equivalent to created.
historylink Provides a link to each entry's history.
  • historylink=embed - Transforms the Edit field into a history link.
  • historylink=append - Appends the history link onto the Edit field.
omit={text} Omits the given text from the beginning of each entry's title.
order=ascending Reverses the sort order.
newdays={number} Marks all links to entries modified less than number days ago with class="forum_new"; defaults to 7.
timestamp=false Removes timestamp values from the page links. Timestamps ensure that newly-edited entries don't appear as "visited" links.
cache=true Saves the results of this object to the parser cache. This is false by default unless DPLForum::requireCache is set to true.

Multipage support with #forumlink[edit]

The #forumlink parser function creates links to the present page which offset the forum listings by a certain amount. This allows each forum to contain any number of additional "pages". The syntax is as follows:

{{#forumlink:count|page|text}}
count represents the number of topics per page.
page specifies the page number, either as an absolute value or a relative offset.
text sets the link text. If this is left blank, the page number is used instead.

Relative offsets and page conditions[edit]

When specifying the page, if the number is preceded by + or -, then it is assumed to be a relative offset from the present position. Relative links which would link to pages less than 1 are not displayed.

You may also optionally specify a condition after the page number, which the page must meet in order to be displayed.

For example, to specify a link to the next page when that page is less than 10, use:

{{#forumlink:30|+1<10|Next page}}

A link to the previous page (assuming count=50):

{{#forumlink:50|-1>0|Previous page}}

In conjunction with ParserFunctions, a link to the next page, that won't be displayed when you reach the last page, would be (assuming count=50, only one category specified in category and notcategory is not used):

{{#forumlink:50|+1<{{#expr: ceil ({{PAGESINCATEGORY:{{PAGENAME}}|R}}/50) +1 }}|Next page}}

Conditions may use the <, <=, >, and >= operators.

Note: For multipage functionality to work correctly, the cache property must be set to false

MediaWiki messages[edit]

DPLforum specifies six messages in the MediaWiki: namespace.

MediaWiki:Dplforum-by The word "by", followed by $1 (which is the name of a user)
MediaWiki:Dplforum-desc Show on Special:Version as the extension's description
MediaWiki:Dplforum-never The word "Never".
MediaWiki:Dplforum-edited "Last edited". Separates the title and edit when not in table mode.
MediaWiki:Dplforum-toofew Error message displayed when no categories are given.
MediaWiki:Dplforum-toomany Error message displayed when too many categories are given. This threshold is controlled by DPLForum::maxCategories.

Customization[edit]

Templates can be used to give a traditional forum appearance with user posts.

Example of usage[edit]

Create templates[edit]

To wrap your head around how this extension works, consider the different page areas that a forum usually has (header navigation/bread crumbs, forum index, page body, notices, search input, new topic buttons etc.). To create a standard forum appearance you need to create some templates to match these different parts:

  • Template:Forumheader
  • Template:Forumpage
  • Template:Forumheader/preload
  • Template:Forumnotice (optional: text you wish to appear on all the index and subtopic pages to warn users about conduct/rules etc.)

Template:Forumheader[edit]

This template can provide breadcrumb navigation for wayfinding and to help users easily return the forum index. In the Forumheader template, place something like the following:

<div class="forum-header">
'''Forums:''' {{#ifeq:{{PAGENAME}}|Index||[[Forum:Index|Index]] '''&rarr;'''}}
{{#if:{{#if:{{{1|}}}||1}}{{#ifeq:{{{1}}}|$1|1}}|{{PAGENAME}}|[[Forum:{{{1}}}|{{{1}}}]]}}
</div>{{#ifeq:{{NAMESPACE}}|{{ns:110}}|{{#if:{{{1|}}}|[[Category:{{{1}}}]]}}}}<noinclude>
</noinclude>

Template:Forumnotice[edit]

This template can provide a notice at the top of the Index and forum pages to remind users of forum rules, reminders, how-to's etc. In the Forumnotice template, place something like the following:

Please note (your text here). 

* '''Do not''' post ... (your text here)
* Individual topic threads can be put on your watchlist. 
* Enable email notifications in [[Special:Preferences|your preferences]].
* ''View [{{fullurl:Special:Recentchanges|namespace=110&limit=500}} recent changes for all topics in all forums]. Choose [{{fullurl:Special:Recentchanges|namespace=110&limit=500&days=14}} 14], [{{fullurl:Special:Recentchanges|namespace=110&limit=500&days=30}} 30], or [{{fullurl:Special:Recentchanges|namespace=110&limit=500&days=60}} 60] days for older changes.''
* ''You may have to [{{fullurl:{{FULLPAGENAME}}|action=purge}} purge] this page to see changes below.''

Template:Forumsearch[edit]

This template can be used with the InputBox extension to create a search form on the Forumpage template (to display on all forum pages). In this template, place something like the following:

<div class="inputbox-sidebar">
<inputbox>
type=fulltext
width=40
namespaces=Forum**,Help
searchbuttonlabel=Search
</inputbox>
</div><noinclude>[[Category:Forum templates]][[Category:Search templates]]</noinclude>

Template:Forumpage[edit]

This template can apply the same layout to all forum subtopic pages, including Forumheader, Forumnotice and the input forms used to easily search and create new topics. In this template, place something like the following:

{{Forumsearch}}
<div class="inputbox-sidebar">
<inputbox>
buttonlabel=Add new topic
prefix=Forum:
preload=Template:Forumheader/preload
preloadparams[]={{PAGENAME}}
type=create
width=40
</inputbox></div>
{{{1|}}}
{{Forumnotice}}
{| class="forum-table" style="clear: right; width: 100%"
! Topic !! Last edit
<forum>
namespace=Forum
category={{PAGENAME}}
shownamespace=false
addauthor=true
addlasteditor=true
historylink=true
compact=all
timestamp=true
cache=false
</forum>
|}

Template:Forumheader/preload[edit]

This template can be used to create text that appears at the top of the edit mode page of a newly created topic to help new/novice MediaWiki users. In this template, place something like the following:

{{Forumheader|$1}}
<!-- Write your message below these instructions (leave the instructions here) -->
<!-- At the end, please sign your message by placing 4 tilde characters in a row: ~~~~ -->
<!-- Replies are added below the post by adding one colon (:) for each indent level at the front of the reply -->
<noinclude>
[[Category:Forum templates]]
[[Category:Preload templates]]
</noinclude>

Create pages[edit]

After the templates are created, you may now put them to use in pages in the Forum namespace. Create the following pages (Index should be named the same as below but following pages may be adapted).

  • Forum:Index
  • Forum:General Discussion
  • Any other forum sections you would like.

Forum:Index page[edit]

This page serves as the forum landing page and index. Create the page and place something like the following:

{{DISPLAYTITLE:Wiki Forum}}
{{Forumheader}}
{{Forumsearch}}
Welcome to the (your site) forums! 
{{Forumnotice}}
{| class="forum-table" style="width: 100%;"
! Forum !! Last Edit
|-
<forum><!-- General Discussion Section -->
namespace=Forum
category=General Discussion
title=Forum:General Discussion
shownamespace=false
addauthor=true
addlasteditor=true
compact=all
timestamp=true
cache=false
</forum><!-- End General Discussion Section -->
<forum><!-- Editing Help Section -->
namespace=Forum
category=Editing Help
title=Forum:Editing Help
shownamespace=false
addauthor=true
addlasteditor=true
compact=all
timestamp=true
cache=false
</forum><!-- Editing Help Section -->
|}
[[Category:Forums]]

Forum:General Discussion (sub-topic) page[edit]

This page serves as the landing page for the General discussion section and lists all threads under this section. Create the page and place something like the following:

{{Forumheader}}
{{Forumpage|This is the place to discuss (your text here)...}}
<!-- Add any other info here -->
[[Category:Forums]]

Note: Include this type of code on any page created in the forum namespace to style it as a subtopic page.

Adding styles[edit]

The forum features can then be styled by adding styles in MediaWiki:Common.css (and adjusting as needed to suit your theme). The corresponding classes specified above are targeted and styled the below example:

/*---- DPL Forum ----*/
/* Forumheader style */
.forum-header {
	border: 1px solid #aaa; 
	background-color: #cedff2; 
	margin: 0 0 1em; 
	padding: 0 0.5em;
}
/* Forum table outside border */
table.forum-table {
	border: 1px solid lightgrey;
}
/* Forum table cell padding and borders for all table body cells */
table.forum-table > tbody > tr > td {
	border-top: 1px solid lightgrey;
	padding: 8px;
}
/* Forum table background color (show on odd rows) */
table.forum-table > tbody > tr {
	background-color:#fff;
}
/* Forum table background color (shows on even rows) */
table.forum-table > tbody > tr:nth-child(even) {
	background-color:#f5faff;
}
/* Forum table header row background, style and padding */
table.forum-table > tbody > tr > th {
	background-color:#cedff2;
	font-weight:bold;
	padding: 8px;
}

/*-- InputBox --*/
.inputbox-sidebar {
	width: 300px; 
	border: 1px solid lightgrey; 
	clear: right; 
	float: right; 
	margin: 3px; 
	padding:10px;
	margin-left: 2em;
}

Wikis using this extension[edit]

See Extension:DPLforum - WikiApiary. It lists wikis using this extension.

The alphabetical links go directly to the main forum index. See Special:Version for each site to see what version of MediaWiki and DPLforum is being used. Special:SpecialPages is usually linked from the sidebar of most wikis (in the toolbox). You can go to Special:SpecialPages to find the link to "Version" which is Special:Version. Some links to forum template categories are also listed below.