Module:WikiFur

From WikiFur Data
Revision as of 15:03, 27 October 2023 by GreenReaper (talk | contribs) (Alternate ID)
Jump to navigation Jump to search

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

local p = {}

function p.ID(frame)
  -- return mw.wikibase.getEntityIdForCurrentPage();
  return frame:getParent():getTitle();
end

function p.Label(frame)
  return mw.wikibase.getLabel(frame.args.id);
end

return p;