Mô đun:Unsubst

番版𠓨𣅶05:15、𣈜30𣎃11𢆥2014𧵑Mxn (討論 | 㨂𢵰) (Đã khóa “Mô đun:Unsubst”: Bản mẫu hay mô đun được sử dụng rất nhiều: 2.707 trang nhúng ([Sửa đổi=Chỉ cho phép các thành viên tự động xác nhận] (vô thời hạn) [Di chuyển=Chỉ cho phép các thành v)
(恪) ←番版𫇰 | 番版㵋一 () | 番版㵋→ ()

Documentation for this module may be created at Module:Mô đun:Unsubst/doc

local p = {}

local specialParams = {
	['$N'] = 'tên bản mẫu', -- Deprecated, but keeping until it is removed from transcluding templates
	['$B'] = 'nội dung bản mẫu',
}

p[''] = function ( frame )
	if not frame:getParent() then
		error( '{{#gọi:Unsubst|}} vô lý vì không có khung mẹ' )
	end
	if not frame.args['$B'] then
		error( '{{#gọi:Unsubst|}} cần tham số $B (nội dung bản mẫu)' )
	end
	
	if mw.isSubsting() then
		---- substing
		-- Combine passed args with passed defaults
		local args = {}
		for k, v in pairs( frame.args ) do
			if not specialParams[k] then
				if v == '__DATE__' then
					v = mw.getContentLanguage():formatDate( '"tháng" n "năm" Y' )
				end
				args[k] = v
			end
		end
		for k, v in pairs( frame:getParent().args ) do
			args[k] = v
		end

		-- Build an equivalent template invocation
		-- First, find the title to use
		local titleobj = mw.title.new(frame:getParent():getTitle())
		local title
		if titleobj.namespace == 10 then -- NS_TEMPLATE
			title = titleobj.text
		elseif titleobj.namespace == 0 then -- NS_MAIN
			title = ':' .. titleobj.text
		else
			title = titleobj.prefixedText
		end

		-- Build the invocation body with numbered args first, then named
		local ret = '{{' .. title
		for k, v in ipairs( args ) do
			if string.find( v, '=', 1, true ) then
				-- likely something like 1=foo=bar, we need to do it as a named arg
				break
			end
			ret = ret .. '|' .. v
			args[k] = nil
		end
		for k, v in pairs( args ) do
			ret = ret .. '|' .. k .. '=' .. v
		end
		
		return ret .. '}}'
	else
		---- Not substing
		-- Just return the "body"
		return frame.args['$B'] .. (frame.args['$N'] and frame:getParent():getTitle() == mw.title.getCurrentTitle().prefixedText and '[[Thể loại:Bản mẫu gọi Mô đun:Unsubst với $N]]' or '')
	end
end

return p