Module:Layout/Production/Model/Response

Uit Wikibooks
 Deze module is nog in ontwikkeling (versie 0.0) en wordt getest.

De Module:Layout is bedoeld om snel, consistent en uitgebreid een pagina op te maken.
Er is een op de module afgestemde handleiding over deze onderwijswiki beschikbaar.

De module wordt geïnitialiseerd met de configuratie in Module:Layout/Production/Configuration.

Controleer op scriptfouten of opmaak notificaties.




-- The interface forms a response object which will contain valid outputdata for the invoker of the module
local response = {}
local wikitext = "";

function response.init( )
	wikitext = "";
end

function response.add( result )
	wikitext = wikitext .. result;
end

function response.get()
	return wikitext;
end

return response;
Informatie afkomstig van https://nl.wikibooks.org Wikibooks NL.
Wikibooks NL is onderdeel van de wikimediafoundation.