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

Created page with "local p = {} local args = {} local origArgs = {} local root local empty_row_categories = {} local category_in_empty_row_pattern = '%[%[%s*[Cc][Aa][Tt][Ee][Gg][Oo][Rr][Yy]%s*:[^]]*]]' local has_rows = false local lists = { plainlist_t = { patterns = { '^plainlist$', '%splainlist$', '^plainlist%s', '%splainlist%s' }, found = false, styles = 'Plainlist/styles.css' }, hlist_t = { patterns = { '^hlist$', '%shlist$', '^hlist%s', '%shlist%s'..."
ট্যাগ: মোবাইল সম্পাদনা মোবাইল ওয়েব সম্পাদনা
সম্পাদনা সারাংশ নেই
ট্যাগ: মোবাইল সম্পাদনা মোবাইল ওয়েব সম্পাদনা
 
(২ জন ব্যবহারকারী দ্বারা সম্পাদিত ৪টি মধ্যবর্তী সংশোধন দেখানো হচ্ছে না)
১ নং লাইন: ১ নং লাইন:
local p = {}
local p = {}
local success, navbar = pcall(require, 'Module:Navbar')
if not success then
    function p._navbar() return "" end
else
    p._navbar = navbar._navbar
end
local args = {}
local args = {}
local origArgs = {}
local origArgs = {}
২৫২ নং লাইন: ২৫৯ নং লাইন:
:wikitext(fixChildBoxes(args.below,'td'))
:wikitext(fixChildBoxes(args.below,'td'))
end
end
local function addSubheaderRow(subheaderArgs)
local function addSubheaderRow(subheaderArgs)
if subheaderArgs.data and
if subheaderArgs.data and
৩৯৭ নং লাইন: ৪০৩ নং লাইন:


local function renderNavBar()
local function renderNavBar()
if not args.name then return end
if not args.name then return end 
if navbar and navbar._navbar then
return navbar._navbar(args.name)
else
return
end


has_rows = true
has_rows = true
৬৭১ নং লাইন: ৬৮২ নং লাইন:
end
end


-- If called via #in
-- If called via #invoke, use the args passed into the invoking template.
-- Otherwise, for testing purposes, assume args are being passed directly in.
function p.infobox(frame)
if frame == mw.getCurrentFrame() then
origArgs = frame:getParent().args
else
origArgs = frame
end
parseDataParameters()
return _infobox()
end
 
-- For calling via #invoke within a template
function p.infoboxTemplate(frame)
origArgs = {}
for k,v in pairs(frame.args) do origArgs[k] = mw.text.trim(v) end
parseDataParameters()
return _infobox()
end
return p