Module:Transcludable section: Difference between revisions
Appearance
Content deleted Content added
temporary tracking with Category:Pages using transcludable section with unknown parameters Tag: Reverted |
tracking empty, removing tracking |
||
Line 12: | Line 12: | ||
local bsection = frame.args['section'] or frame.args['1'] or '' |
local bsection = frame.args['section'] or frame.args['1'] or '' |
||
local editlink = frame.args['edit'] or '' |
local editlink = frame.args['edit'] or '' |
||
local extratracking = '' |
|||
if ( (frame:getParent().args['section'] or '') ~= '' ) then extratracking = extratracking .. '[[Category:Pages using transcludable section with unknown parameters|section]]' end |
|||
if ( (frame.args['transcludesection'] or '') ~= '' ) then extratracking = extratracking .. '[[Category:Pages using transcludable section with unknown parameters|transcludesection]]' end |
|||
-- Exit early if we are using section transclusion for a different section |
-- Exit early if we are using section transclusion for a different section |
||
if( tsection ~= '' and bsection ~= '' ) then |
if( tsection ~= '' and bsection ~= '' ) then |
||
if( tsection ~= bsection ) then |
if( tsection ~= bsection ) then |
||
return '' |
return '' |
||
end |
end |
||
end |
end |
||
Line 31: | Line 27: | ||
VTE_text = frame:expandTemplate{ title = 'navbar', args = { mini=1, style='float:right', brackets=1, editlink} } |
VTE_text = frame:expandTemplate{ title = 'navbar', args = { mini=1, style='float:right', brackets=1, editlink} } |
||
end |
end |
||
return VTE_text .. text |
return VTE_text .. text |
||
end |
end |
||
Revision as of 18:24, 15 December 2022
This module may be used to create selectively transcluded sections using syntax which is compatible with Module:Sports table, Module:Sports results, Module:Football box, and Module:Football box collapsible.
-- Module to create selectively transcluded sections using syntax which is
-- compatible with [[Module:Sports table]] and [[Module:Sports results]]
require('strict')
local p = {}
-- Main function
function p.main(frame)
-- Declare locals
local tsection = frame:getParent().args['transcludesection'] or ''
local bsection = frame.args['section'] or frame.args['1'] or ''
local editlink = frame.args['edit'] or ''
-- Exit early if we are using section transclusion for a different section
if( tsection ~= '' and bsection ~= '' ) then
if( tsection ~= bsection ) then
return ''
end
end
local text = frame.args['text'] or ''
-- Get VTE button text (but only for non-empty text)
local VTE_text = ''
if (text ~= '' and editlink ~= '') then
VTE_text = frame:expandTemplate{ title = 'navbar', args = { mini=1, style='float:right', brackets=1, editlink} }
end
return VTE_text .. text
end
return p