Module:WikiFur

From WikiFur Data
Jump to navigation Jump to search

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

local p = {}

function p.ID(frame)
  -- This seemingly only works with sitelinks
  -- return mw.wikibase.getEntityIdForCurrentPage();
  -- This only works inside pages, not Sitenotice 
  return frame:getParent():getTitle();
  -- This just returns the module itself 
  -- return frame:getTitle();
end

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

return p;