恪別𡧲版𢯢𢷮𧵑「Mô đun:Category handler/data」

n (Đã khóa “Mô đun:Category handler/data”: Bản mẫu hay mô đun được sử dụng rất nhiều: Sẽ được sử dụng trong Mô đun:Message box ([Sửa đổi=Cấm mọi thành viên (trừ bảo quản viên)] (vô thời h…)
 
n (1 翻版)
 
(空固事恪別)

版㵋一𣅶13:09、𣈜30𣎃12𢆥2015

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

-- This module assembles data to be passed to [[Mô đun:Category handler]] using
-- mw.loadData. This includes the configuration data and whether the current
-- page matches the title blacklist.

local data = require('Mô đun:Category handler/config')
local mShared = require('Mô đun:Category handler/shared')
local blacklist = require('Mô đun:Category handler/blacklist')
local title = mw.title.getCurrentTitle()

data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(
	title.prefixedText,
	blacklist
)

data.currentTitleNamespaceParameters = mShared.getNamespaceParameters(
	title,
	mShared.getParamMappings()
)

return data