This documentation is transcluded from Module:ListOfCoaches/doc. Changes can be proposed in the talk page.
This module uses Semantic MediaWiki to automatically query and display article data.
To edit data for an article in this module, edit the article's infobox! Refer to the SMW Guide and the SMW user manual for more information.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Function list |
---|
L 7 — p.showList |
Creates a list of all coaches in Category:Carriages based on SMW data.
Parameter | Description | Type | Status | |||
---|---|---|---|---|---|---|
No parameters specified |
local articleList = require('Module:ArticleList'):new()
local p = {}
--- Shows a list of all carriages
---@param frame table the frame object
function p.showList(frame)
articleList:addArticlesForCategory("Carriages")
articleList:registerProperties({
"Title",
"Image",
"Coupled With",
"Status",
"Spawn Points",
"Seats",
"Doors",
"Gangway Doors"
})
return articleList:render(frame)
end
return p