মডিউল:Category handler/data: সংশোধিত সংস্করণের মধ্যে পার্থক্য

    WikiPasokh থেকে
    (1 revision imported)
     
    (১টি সংস্করণ আমদানি করা হয়েছে)
     
    (কোনও পার্থক্য নেই)

    ১০:৩৩, ২৫ জানুয়ারি ২০২৫ তারিখে সম্পাদিত সর্বশেষ সংস্করণ

    এই মডিউলের জন্য মডিউল:Category handler/data/নথি-এ নথিপত্র তৈরি করা হয়ে থাকতে পারে

    -- 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('Module:Category handler/config')
    local mShared = require('Module:Category handler/shared')
    local blacklist = require('Module:Category handler/blacklist')
    local title = mw.title.getCurrentTitle()
    
    data.currentTitleMatchesBlacklist = mShared.matchesBlacklist(
    	title.prefixedText,
    	blacklist
    )
    
    data.currentTitleNamespaceParameters = mShared.getNamespaceParameters(
    	title,
    	mShared.getParamMappings()
    )
    
    return data