Module:CIB: Difference between revisions

From The Satanic Wiki
Jump to navigation Jump to search
No edit summary
Tag: Reverted
No edit summary
Tag: Undo
 
Line 6: Line 6:
local args = frame:getParent().args
local args = frame:getParent().args
local headerStyle
local headerStyle
if args.headerstyle and args.headerstyle ~= nil then
if args.headerstyle and args.headerstyle ~= '' then
headerStyle = string.format('background-color:%s;', args.headerstyle)
headerStyle = string.format('background-color:%s;', args.headerstyle)
else
else
Line 14: Line 14:
headerStyle = headerStyle,  
headerStyle = headerStyle,  
} )
} )
if args.title ~= nil then
:addHeader( args.title )
p:addHeader( args.title );
:addImage( args.image, args.caption )
end
:addRow( 'Born', args.born )
if args.image ~= nil then
:addRow( 'Other Names', args.alias )
p:addImage( args.image, args.caption );
:addRow( 'Occupation', args.occupation )
end
:addRow( 'Satanic Affiliation', args.affiliation )
if args.born ~= nil then
p:addRow( 'Born', args.born );
end
if args.alias ~= nil then
p:addRow( 'Other Names', args.alias );
end
if args.occupation ~= nil then
p:addRow( 'Occupation', args.occupation );
end
if args.affiliation ~= nil then
p:addRow( 'Satanic Affiliation', args.affiliation );
end
if args.established ~= nil then
p:addRow( 'Established', args.established );
end
if args.entity_type ~= nil then
p:addRow( 'Entity Type', args.entity_type );
end
if args.incorporated_state ~= nil then
p:addRow( 'Incorporated State', args.incorporated_state );
end
if args.state_id ~= nil then
p:addRow( 'State ID#', args.state_id );
end
if args.ein ~= nil then
p:addRow( 'EIN', args.ein );
end
if args.physical_address ~= nil then
p:addRow( 'Physical Address', args.physical_address );
end
if args.mail_address ~= nil then
p:addRow( 'Mail Address', args.mail_address );
end
if args.registered_agent ~= nil then
p:addRow( 'Registered Agent', args.registered_agent );
end
if args.doing_business_as ~= nil then
p:addRow( 'Doing Business As', args.doing_business_as );
end
if args.past_names ~= nil then
p:addRow( 'Past Names', args.past_names );
end
if args.website ~= nil then
p:addRow( 'Website', args.website );
end
return retval
return retval
end
end
 
return p
return p

Latest revision as of 03:09, 24 June 2021

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

local capiunto = require 'capiunto'

local p = {}

function p.main(frame)
	local args = frame:getParent().args
	local headerStyle
	if args.headerstyle and args.headerstyle ~= '' then
		headerStyle = string.format('background-color:%s;', args.headerstyle)
	else
		headerStyle = 'background-color:grey;'
	end
	local retval = capiunto.create( {
		headerStyle = headerStyle, 
	} )
	:addHeader( args.title )
	:addImage( args.image, args.caption )
	:addRow( 'Born', args.born )
	:addRow( 'Other Names', args.alias )
	:addRow( 'Occupation', args.occupation )
	:addRow( 'Satanic Affiliation', args.affiliation )
	return retval
end

return p