From English Wikipedia @ Freddythechick
local pp = {}
function pp.status(Args)
-- Declare status options
-- ------------------------------------------------------------
-- NOTE: If you add to status_code, also add to status_called and status_letters!!
-- Or functionality will be compromised
-- ------------------------------------------------------------
local status_code, status_called = {}
status_code = { E='Eliminated from playoff contention', P='Clinched Presidents Trophy',
X='Clinched playoff spot', Y='Clinched division', Z='Clinched conference'}
status_called = {E=false, P=false, X=false, Y=false, Z=false}
local status_letters = 'EPXYZ'
-- Status position (before or after read and default)
local stat_pos_val = Args['status_pos'] or ''
local status_position = 'before' -- Default location
stat_pos_val = string.lower(stat_pos_val)
if stat_pos_val=='before' then
status_position = 'before'
elseif stat_pos_val=='after' then
status_position = 'after'
end
return {code=status_code, called=status_called, letters=status_letters, position=status_position}
end
return pp