Modul:Infobox: Unterschied zwischen den Versionen
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
Admin (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 22: | Zeile 22: | ||
) | ) | ||
:addRow( 'Hersteller', 'HTK GmbH & Co. KG') | :addRow( 'Hersteller', 'HTK GmbH & Co. KG') | ||
:addRow( 'Webseite', 'http://www.omniseller.de') | :addRow( 'Webseite', 'http://www.omniseller.de') | ||
end | end | ||
return p | return p |
Version vom 1. Dezember 2017, 16:04 Uhr
local p = {}
function p.ShowInfoBoxOmniMDE(frame) local capiunto = require 'capiunto' return capiunto.create( {title = tostring(mw.title.getCurrentTitle())} ) :addImage( string.format('Datei:%s', 'OmniMDE_Logo_v9.png'), -- featured image 'OmniMDE Logo 2017' -- caption ) :addRow( 'Hersteller', 'HTK GmbH & Co. KG') :addRow( 'Release', '26.08.2016') :addRow( 'Version', '0.1.18.2494') :addRow( 'Webseite', 'http://www.htk.de') end
function p.ShowInfoBoxOmniSeller(frame) local capiunto = require 'capiunto' return capiunto.create( {title = tostring(mw.title.getCurrentTitle())} ) :addImage( string.format('Datei:%s', 'Logo_OmniSeller_2017.png'), -- featured image 'OmniSeller Logo 2017' -- caption ) :addRow( 'Hersteller', 'HTK GmbH & Co. KG') :addRow( 'Webseite', 'http://www.omniseller.de') end
return p