Module:WikidataCheck

From Random Island Wiki
Revision as of 06:33, 28 April 2013 by >Happy5214 (Another typo?)
Jump to navigation Jump to search

Documentation for this module may be created at Module:WikidataCheck/doc

local p = {}

function p.wikidatacheck(frame)
    local pframe = frame:getParent()
    local config = frame.args -- the arguments passed BY the template, in the wikitext of the template itself
    local args = pframe.args -- the arguments passed TO the template, in the wikitext that transcludes the template
    
    local property = config.property
    
    local entity = mw.wikibase.getEntity()
    local propValue = entity.claims[property][1].mainsnak.datavalue.value
    return propValue
end