Module:Infobox Item

From Eco - English Wiki
Revision as of 21:47, 4 January 2025 by StalEF (talk | contribs) (Replaced content with "local p = {} local Utils = require('Module:Utils') local IconUtils = require('Module:IconUtils') local L = require('Module:Localization') -- Main entry point for the Module function p.main(frame) -- get args from the Template local args = Utils.normaliseArgs(frame) local text = '' return text end return p")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This module provides the back end functionality of the Template:Infobox_Item.

If the template is passed an Infobox will be made using details from the following Modules:

Credit[edit source]

Original Infobox (now known as Infobox_Item) created by Pradoxzon was then edited by Nesphit and TreeNuts0. Fyre (FishAus) and Scotty (ZeelNightwolf) further edited the Infobox_Item. They then duplicated and used as a base for Infobox_Skill, Infobox_Plant, and Infobox_Animal.


local p = {}

local Utils = require('Module:Utils')
local IconUtils = require('Module:IconUtils')
local L = require('Module:Localization')

-- Main entry point for the Module
function p.main(frame)
  -- get args from the Template
  local args = Utils.normaliseArgs(frame)
  local text = ''
  
    return text
end

return p