Módulo:Category handler/data

Fonte: Wikinotícias
Documentação Documentação de módulo

Descrição

Este Módulo implementa a predefinição {{Cat handler}}. Por favor consulte a predefinição para mais instruções.

Uso

Esta documentação se encontra na subpágina Módulo:Category handler/data/doc (editar | histórico)
Por favor inclua as categorias à subpágina /doc. Subpáginas deste módulo.

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

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

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

return data