Jump to content

Module:User:SDZeroBot

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by SD0001 (talk | contribs) at 17:53, 7 October 2020. The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
local getArgs = require('Module:Arguments').getArgs
local JSON = require('Module:jf-JSON')
local p = {}

function p.lastupdate(frame)
	local args = getArgs(frame)
	return args[0]
	-- return p._lastupdate(args[0], args[1])
end

function p._lastupdate(lastupdateISO, duration)
	local lang = mw.language.new('en')
	
	local lastupdate = tonumber(lang:formatDate('U', lastupdateISO))
	local allowance = tonumber(duration) -- seconds
	local current = os.time() -- seconds since epoch

	local display_date = lang:formatDate('j F Y', lastupdateISO)
	if current - allowance > lastupdate then
		return '<span class=error>' .. display_date .. '</span>'
	else
		return display_date
	end

end

return p