Home
Random
Log in
Settings
About Brighter Shores Wiki
Disclaimers
Search
Editing
Module:Bankable items
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
local purge = require('Module:Purge')._purge local pt = require('Module:Paramtest') p = {} function p.main(frame) local args = frame:getParent().args local bank = args[1] or mw.title.getCurrentTitle().text local cols = args["cols"] local col_width = args['colWidth'] local use_cols = pt.has_content(cols) or pt.has_content(col_width) local askdata = mw.smw.ask{ "[[Bank::"..bank.."]]", limit = 4000 } if askdata == nil then return ":''No bankable items found. To force an update, click " ..purge('dml-'..mw.uri.anchorEncode(bank), 'here', 'span') ..".''" end data = {} for _,d in ipairs(askdata) do for _,v in ipairs(d) do table.insert(data, v) end end mw.logObject(data) ret = mw.html.create('ul') for _,value in ipairs(data) do ret:tag('li'):wikitext(value) end if use_cols then ret:css({ ['column-count'] = cols, ['column-width'] = col_width or '200px' }) end mw.log(ret) return(ret) end return p
Summary:
Please note that all contributions to Brighter Shores Wiki are considered to be released under the CC BY-NC-SA 3.0 (see
Brighter Shores:Copyrights
for details). If you do not want your writing to be edited mercilessly and redistributed at will, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource.
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Preview page with this template
Templates used on this page:
Template:Bankable items
(
edit
)
Template:Bankable items/doc
(
edit
)
Template:DependencyList
(
edit
)
Template:Documentation
(
edit
)
Template:Extension DPL
(
edit
)
Template:No documentation
(
edit
)
Template:PageType
(
edit
)
Module:Array
(
edit
)
Module:Bankable items
(
edit
)
Module:Bankable items/doc
(
edit
)
Module:DPLlua
(
edit
)
Module:DependencyList
(
edit
)
Module:Documentation
(
edit
)
Module:Paramtest
(
edit
)
Module:Tooltip
(
edit
)
Module:Yesno
(
view source
) (semi-protected)
This page is a member of a hidden category:
Category:Pages using DynamicPageList3 parser function