Ir al contenido

Módulo:error

De Wikcionario, el diccionario libre

La documentación para este módulo puede ser creada en Módulo:error/doc

local export = {}

function export.mostrar(frame)
	--local parent_frame = frame:getParent()
	--local args = parent_frame.args
	local args = frame.args
	if args[1] then
		error(args[1])	
	else
		error()
	end
end

function export.plantilla_obsoleta(frame)
	local parent_frame = frame:getParent()
	local cmp = parent_frame:getTitle()
	local title = mw.title.getCurrentTitle().fullText
	if title ~= cmp then
		error("PLANTILLA OBSOLETA")
	end
	return "(esta plantilla está obsoleta)".."[[Categoría:Plantillas obsoletas]]".."__EXPECTUNUSEDTEMPLATE__"
end

return export