Site notice
Welcome! Please check To-Do List to see what pages need help, who is working on what, etc.

Difference between revisions of "Module:PrevNext"

From Mega Man Wiki
Line 10: Line 10:
function p._prevnext(args, options)  
function p._prevnext(args, options)  
if args["type"] ~= nil then  
if args["type"] ~= nil then  
type = args["type"]
if type == "tv show" then
type = "episode"
end
end
end

Revision as of 20:05, 8 May 2020

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

local p = {} --p stands for package

function p.prevnext(frame)
	-- A passthrough that gets args from the frame and all
	mArguments = require('Module:Arguments')
	args = mArguments.getArgs(frame)
	return p._prevnext(args)
end

function p._prevnext(args, options) 
		if args["type"] ~= nil then 
			if type == "tv show" then
				type = "episode"
			end
		end	
	
		if args["prev"] ~= nil then 
			prev = "<--" .. args["prev"] 
		else 
			prev = "First " .. type		
		end
		
		if args["next"] ~= nil then 
			next = args["next"] .. "-->"  
		else 
			next = "Last " .. type		
		end
		
		if args["series"] ~= nil then 
			series = args["series"] 
		end		
		
		local prev_cell = mw.html.create( 'td' )
td
     :css( 'width', '33%' )
     :wikitext( prev )
     
     local series_cell = mw.html.create( 'th' )
th
     :wikitext( series )
     
     local next_cell = mw.html.create( 'td' )
td
     :css( 'width', '33%' )
     :wikitext( next )
     
local row = mw.html.create( 'tr' )
tr
     :wikitext( prev_cell .. series_cell .. next_cell  )
     
local t = mw.html.create( 'table' )
table
     :css( 'width', '100%' )
     :wikitext( row  )

return tostring( t )
end	

return p