Difference between revisions of "Module:InfoboxImage"

From Betting Wiki
Jump to navigation Jump to search
en>WOSlinker
en>WOSlinker
Line 2: Line 2:
  
 
function i.InfoboxImage(frame)
 
function i.InfoboxImage(frame)
 +
    if frame.args["image"] == "" or frame.args["image"] == nil then
 +
        return ""
 +
    end
 
     if string.sub(frame.args["image"],1,2) == "[[" then
 
     if string.sub(frame.args["image"],1,2) == "[[" then
 
         return frame.args["image"];
 
         return frame.args["image"];

Revision as of 18:56, 28 August 2012

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

local i = {};

function i.InfoboxImage(frame)
    if frame.args["image"] == "" or frame.args["image"] == nil then
        return ""
    end
    if string.sub(frame.args["image"],1,2) == "[[" then
        return frame.args["image"];
    else
        return "[[File:" .. frame.args["image"] .. "|frameless]]" ;
    end
end

return i;