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 1: Line 1:
local p = {} --p stands for package
local p = {} --p stands for package
local type = "something";


function p.prevnext(frame)
function p.prevnext(frame)
Line 10: Line 9:


function p._prevnext(args, options)  
function p._prevnext(args, options)  
if args["type"] ~= nil then
if type == "tv show" then
type = "episode"
end
end
if args["prev"] ~= nil then  
if args["prev"] ~= nil then  
prev = "<-- " .. args["prev"]  
prev = "<-- " .. args["prev"]  
else  
else  
prev = "First " .. type
prev = "First of the series"  
end
end
Line 25: Line 18:
next = args["next"] .. " -->"   
next = args["next"] .. " -->"   
else  
else  
next = "Last " .. type
next = "Last of the series"
end
end

Revision as of 19:46, 11 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["prev"] ~= nil then 
			prev = "<-- " .. args["prev"] 
		else 
			prev = "First of the series" 
		end
		
		if args["next"] ~= nil then 
			next = args["next"] .. " -->"  
		else 
			next = "Last of the series"
		end
		
		if args["series"] ~= nil then 
			series = args["series"] 
		end		
		
	local prev_cell = mw.html.create( 'td' )
     :css( 'width', '33%' )
     :wikitext( prev )
     
     local series_cell = mw.html.create( 'th' )
     :wikitext( series )
     
     local next_cell = mw.html.create( 'td' )
     :css( 'width', '33%' )
     :wikitext( next )
     
local row = mw.html.create( 'tr' )
     :wikitext( tostring(prev_cell) .. tostring(series_cell) .. tostring(next_cell)  )
     
     
local t = mw.html.create( 'table' )
     t:addClass( "wikitable")
     t:css( 'width', '100%' )
     t:wikitext( tostring(row)  )

return tostring( t )
end	

return p