Modul:Person: Unterschied zwischen den Versionen
Aus FürthWiki
Keine Bearbeitungszusammenfassung |
K (Leerzeichen entfernt...) |
||
Zeile 6: | Zeile 6: | ||
g = p.Bild( frame, args ) | g = p.Bild( frame, args ) | ||
d = p.Daten( frame, args ) | d = p.Daten( frame, args ) | ||
-- Before you ask: No, you cant' use extensionTag here! | -- Before you ask: No, you cant' use extensionTag here! | ||
t1='<tab name=Bild>' .. g .. '</tab>' | t1='<tab name=Bild>' .. g .. '</tab>' | ||
t2='<tab name=Daten>' .. d .. '</tab>' | t2='<tab name=Daten>' .. d .. '</tab>' | ||
t ='<div class=factbox><tabs>'..t1..t2..'</tabs></div>' | t ='<div class=factbox><tabs>'..t1..t2..'</tabs></div>' | ||
-- Use preprocess to render the factbox and all contens at once | -- Use preprocess to render the factbox and all contens at once | ||
return frame:preprocess(t) | return frame:preprocess(t) | ||
end | end | ||
function p.Bild( frame, args ) | function p.Bild( frame, args ) |
Version vom 22. Januar 2024, 22:17 Uhr
Dies ist das Test-Modul, welches einige alte Plugins obsolet macht (vor allem Variables), welches ab MediaWiki >1.35 vermutlich Probleme macht, da abgekündigt.
local p = {} --p stands for package
function p.Factbox(frame)
pf = frame:getParent()
args = pf.args
g = p.Bild( frame, args )
d = p.Daten( frame, args )
-- Before you ask: No, you cant' use extensionTag here!
t1='<tab name=Bild>' .. g .. '</tab>'
t2='<tab name=Daten>' .. d .. '</tab>'
t ='<div class=factbox><tabs>'..t1..t2..'</tabs></div>'
-- Use preprocess to render the factbox and all contens at once
return frame:preprocess(t)
end
function p.Bild( frame, args )
t = frame:expandTemplate{title = 'Bildertab', args={Bild=args.Bild}}
return t
end
function p.Daten( frame, args )
t = args.Bild
return tostring(t)
end
return p