মডিউল:বিষয়শ্রেণী পরিচালনাকারী/উপাত্ত

পর্নোপিডিয়া থেকে
আজিজ (আলোচনা | অবদান) কর্তৃক ১৯:৪৭, ২০ সেপ্টেম্বর ২০১৬ তারিখে সংশোধিত সংস্করণ ("-- This module assembles data to be passed to Module:Category handler using -- mw.loadData. This includes the configuration data and whether the cu..." দিয়ে পাতা তৈরি)
(পরিবর্তন) ← পূর্বের সংস্করণ | সর্বশেষ সংস্করণ (পরিবর্তন) | পরবর্তী সংস্করণ → (পরিবর্তন)

এই মডিউলের জন্য মডিউল:বিষয়শ্রেণী পরিচালনাকারী/উপাত্ত/নথি-এ নথিপত্র তৈরি করা হয়ে থাকতে পারে

-- 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('মডিউল:বিষয়শ্রেণী পরিচালনাকারী/রূপরেখা')
local mShared = require('মডিউল:বিষয়শ্রেণী পরিচালনাকারী/শেয়ারকৃত')
local blacklist = require('মডিউল:বিষয়শ্রেণী পরিচালনাকারী/কালোতালিকা')
local title = mw.title.getCurrentTitle()

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

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

return data