Jump to content

Module:Sandbox/Tom Morris

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Tom Morris (talk | contribs) at 14:16, 19 May 2013 (avoiding nils). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local p = {}

p.spouse = function(frame)
    local spouse_input = mw.text.trim(frame.args[1] or "")
    if spouse_input == "PARAMETER_NOT_SET" then
        -- get from wikidata
        local entity = mw.wikibase.getEntity()
        local label = mw.wikibase.sitelink("Q" .. entity.claims.p26[0].mainsnak.datavalue.value["numeric-id"])
        return "[[" .. label .. "]]"
    else
        return spouse_input
    end
end

return p