Módulo:Category handler/data
< Módulo:Category handler
Ir para navegação
Ir para pesquisar
Revisão de 18h16min de 29 de janeiro de 2019 por br>CaiusSPQR
A documentação para este módulo pode ser criada em Módulo:Category handler/data/doc
-- 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