Pojdi na vsebino

Modul:Category handler/data

Iz Wikipedije, proste enciklopedije
Redakcija dne 19:43, 25. maj 2022 od GeographieMan (pogovor | prispevki) (Nova stran z vsebino: -- 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('Modul:Category handler/config') local mShared = require('Modul:Category handler/shared') local blacklist = require('Modul:Category handler/blacklist') local title = mw.title.getCurrentTitle() data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(...)
(razl) ← Starejša redakcija | prikaži trenutno redakcijo (razl) | Novejša redakcija → (razl)
Documentation icon Dokumentacija modula[predogled] [uredi] [zgodovina] [osveži]

This module is used in conjunction with the category handler module to manage categories; it is a very important template used on millions of pages.

-- 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('Modul:Category handler/config')
local mShared = require('Modul:Category handler/shared')
local blacklist = require('Modul:Category handler/blacklist')
local title = mw.title.getCurrentTitle()

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

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

return data