মডিউল:বিষয়শ্রেণী পরিচালনাকারী/উপাত্ত: সংশোধিত সংস্করণের মধ্যে পার্থক্য
অবয়ব
"-- 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 data = require('মডিউল:বিষয়শ্রেণী পরিচালনাকারী/রূপরেখা') | local data = require('মডিউল:বিষয়শ্রেণী পরিচালনাকারী/রূপরেখা') | ||
local mShared = require('মডিউল:বিষয়শ্রেণী পরিচালনাকারী/শেয়ারকৃত') | local mShared = require('মডিউল:বিষয়শ্রেণী পরিচালনাকারী/শেয়ারকৃত') | ||
local title = mw.title.getCurrentTitle() | local title = mw.title.getCurrentTitle() | ||
০১:০০, ১ জানুয়ারি ২০২৬ তারিখে সংশোধিত সংস্করণ
এই মডিউলের জন্য মডিউল:বিষয়শ্রেণী পরিচালনাকারী/উপাত্ত/নথি-এ নথিপত্র তৈরি করা হয়ে থাকতে পারে
-- 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 title = mw.title.getCurrentTitle()
data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(
title.prefixedText,
blacklist
)
data.currentTitleNamespaceParameters = mShared.getNamespaceParameters(
title,
mShared.getParamMappings()
)
return data