"ഘടകം:Wikibase" എന്ന താളിന്റെ പതിപ്പുകൾ തമ്മിലുള്ള വ്യത്യാസം

Content deleted Content added
(വ്യത്യാസം ഇല്ല)

22:31, 29 ഏപ്രിൽ 2013-നു നിലവിലുണ്ടായിരുന്ന രൂപം

ഈ ഘടകത്തിന്റെ വിവരണം ഘടകം:Wikibase/വിവരണം എന്ന താളിൽ നിർമ്മിക്കാവുന്നതാണ്

-- Module:Wikibase
local p = {}
 
-- Return the item ID of the item linked to the current page.
function p.id(frame)
        if not mw.wikibase then
           return "wikibase module not found"
        end
 
        entity = mw.wikibase.getEntity()
 
        if entity == nil then
           return "(no item connected)"
        end
 
        return entity.id
end
 
-- Return the label of a given data item.
function p.label(frame)
        if frame.args[1] == nil then
            entity = mw.wikibase.getEntity()
            if not entity then return nil end
 
            id = entity.id
        else
            id = frame.args[1]
        end
 
        return mw.wikibase.label( id )
end
 
-- Return the local page about a given data item.
function p.page(frame)
        if frame.args[1] == nil then
            entity = mw.wikibase.getEntity()
            if not entity then return nil end
 
            id = entity.id
        else
            id = frame.args[1]
        end
 
        return mw.wikibase.sitelink( id )
end
 
return p
"https://ml.wikipedia.org/w/index.php?title=ഘടകം:Wikibase&oldid=2432186" എന്ന താളിൽനിന്ന് ശേഖരിച്ചത്