Modul:Infobox: Unterschied zwischen den Versionen

Aus HTK Wiki
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 1: Zeile 1:
local p = {}
local p = {}  
function p.ShowInfoBoxOmniMDE(frame)  
function p.ShowInfoBoxOmniMDE(frame)
local capiunto = require 'capiunto'  
local capiunto = require 'capiunto'
return capiunto.create( {title = 'OmniMDE'} )  
return capiunto.create( {title = 'OmniMDE'} )
:addImage( string.format('[[File:%s|200px]]', 'OmniMDE_Logo_v9.png'), 'OmniMDE Logo')  
:addImage(
:addRow( 'Hersteller', 'HTK GmbH & Co. KG')  
string.format('[[File:%s|200px]]', 'OmniMDE_Logo_v9.png'), -- featured image
:addRow( 'Release', '26.08.2016')  
'OmniMDE Logo' -- caption
:addRow( 'Version', '0.1.33.3802 - 15.12.2017')  
)
:addRow( 'Webseite', '[http://www.htk.de]')  
:addRow( 'Hersteller', 'HTK GmbH & Co. KG')
:addRow( 'Release', '26.08.2016')
:addRow( 'Version', '0.1.20.3802 - 15.12.2017')
:addRow( 'Webseite', 'http://www.htk.de')
end
end


function p.ShowInfoBoxOmniSeller(frame)
function p.ShowInfoBoxOmniSeller(frame)  
local capiunto = require 'capiunto'
local capiunto = require 'capiunto'  
return capiunto.create( {title = 'OmniSeller'} )
return capiunto.create( {title = 'OmniSeller'} )  
:addImage(
:addImage( string.format('[[File:%s|200px]]', 'Logo_OmniSeller_2017.png'), 'OmniSeller Logo 2017' )  
string.format('[[File:%s|200px]]', 'Logo_OmniSeller_2017.png'), -- featured image
:addRow( 'App-Name', '[[OmniSeller:Hauptseite|OmniSeller]]')  
'OmniSeller Logo 2017' -- caption
:addRow( 'Hersteller', 'HTK GmbH & Co. KG')  
)
:addRow( 'Webseite', '[http://www.omniseller.de]')  
:addRow( 'App-Name', '[[OmniSeller:Hauptseite|OmniSeller]]')
:addRow( 'Hersteller', 'HTK GmbH & Co. KG')
:addRow( 'Webseite', 'http://www.omniseller.de')
:addRow( '', '')
:addRow( '', '')
        :addRow( '', '[[OmniSeller:Systemvoraussetzungen|Systemvoraussetzungen]]')
:addRow( '', '[[OmniSeller:Systemvoraussetzungen|Systemvoraussetzungen]]')''
end
end
 
return p
return p

Version vom 9. April 2019, 10:21 Uhr

local p = {} function p.ShowInfoBoxOmniMDE(frame) local capiunto = require 'capiunto' return capiunto.create( {title = 'OmniMDE'} ) :addImage( string.format('Datei:%s', 'OmniMDE_Logo_v9.png'), 'OmniMDE Logo') :addRow( 'Hersteller', 'HTK GmbH & Co. KG') :addRow( 'Release', '26.08.2016') :addRow( 'Version', '0.1.33.3802 - 15.12.2017') :addRow( 'Webseite', '[1]') end

function p.ShowInfoBoxOmniSeller(frame) local capiunto = require 'capiunto' return capiunto.create( {title = 'OmniSeller'} ) :addImage( string.format('Datei:%s', 'Logo_OmniSeller_2017.png'), 'OmniSeller Logo 2017' ) :addRow( 'App-Name', 'OmniSeller') :addRow( 'Hersteller', 'HTK GmbH & Co. KG') :addRow( 'Webseite', '[2]') :addRow( , ) :addRow( , 'Systemvoraussetzungen') end

return p