AEGIS>Pookawboo m (1 revision imported) |
m (1 revision imported) |
(No difference)
|
Latest revision as of 16:45, 31 March 2024
This documentation is transcluded from Module:Tabber/doc. Changes can be proposed in the talk page.
Module:Tabber is shared across the Star Citizen Wikis.
This module is shared across the Star Citizen Wikis. Any changes should also be relayed to the GitHub repository.
This module is unused.
This module is neither invoked by a template nor required/loaded by another module. If this is in error, make sure to add
{{Documentation}}
/{{No documentation}}
to the calling template's or parent's module documentation.Function list |
---|
L 8 — getTabberLength L 25 — Tabber.renderTabber |
This module is used by Lua modules to create Tabber layout.
local Tabber = {} --- Helper function to get Tabber length --- --- @param data table --- @return number local function getTabberLength( data ) local length = 0 for k, _ in next, data do if mw.ustring.find( k, 'label' ) == 1 then length = length + 1 end end return length end --- Render Tabber --- --- @param data table { label{n}, content{n} } --- @return string wikitext of Tabber function Tabber.renderTabber( data ) if type( data ) ~= 'table' then return '' end local tabberContent = {} for i = 1, getTabberLength( data ) do local label = data[ 'label' .. i ] local content = data[ 'content' .. i ] if label ~= nil and label ~= '' and content ~= nil and content ~= '' then table.insert( tabberContent, table.concat( { '|-|', label, '=', content } ) ) end end if next( tabberContent ) == nil then return '' end return mw.getCurrentFrame():extensionTag{ name = 'tabber', content = table.concat( tabberContent ) } end return Tabber