Module:WorkshopIdeas

An alternative space dedicated to technology and culture at Charleroi.
Révision datée du 29 octobre 2013 à 18:34 par Dereckson (discussion | contributions) (+Summary, more information, <span class="workshop-idea">)
Aller à la navigation Aller à la recherche

La documentation pour ce module peut être créée à Module:WorkshopIdeas/doc

local p = {}

-- Gets the idea line
function p.GetIdea(frame)
	args = frame:getParent().args
	
	text = '<span class="workshop-idea">'
	
	-- Title
    if (args.title == nil or args.title == '') then
        -- title = '{{LangSwitch|fr=Idée de worskhop|en=A new workshop idea}}'
        title = 'A new workshop idea'
    else 
        title = args.title
    end  
    text = text .. '<span class="workshop-title">' .. title .. '</span>'
    
    -- Summary, more information
    if (args.summary ~= nil and args.summary ~= '') then
    	text = text .. '<br /><span class="workshop-summary">' .. args.summary .. '</span>'
    end
    if (args.moreinfo ~= nil and args.moreinfo ~= '') then
    	text = text .. '<br /><span class="workshop-moreinfo">[' .. args.moreinfo .. ' More information]</span>'
    end
    
    text = text .. '</span>'
    return text
end

return p