Modül:Category handler/data

Pornopedia sitesinden
16.15, 13 Nisan 2017 tarihinde Xbul (mesaj | katkılar) tarafından oluşturulmuş 16 numaralı sürüm (Yeni sayfa: "-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the current -- page matches the titl...")
(fark) ← Önceki sürüm | Güncel sürüm (fark) | Sonraki sürüm → (fark)

Bu modül için bir Modül:Category handler/data/belge belgelendirmesi oluşturabilirsiniz

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

local data = require('Modül:Category handler/config')
local mShared = require('Modül:Category handler/shared')
local blacklist = require('Modül:Category handler/blacklist')
local title = mw.title.getCurrentTitle()

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

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

return data