View source for Module:WikiProjectBanner/TaskForce
MyWikiBiz, Author Your Legacy — Friday May 16, 2025
Jump to navigationJump to searchYou do not have permission to edit this page, for the following reasons:
You can view and copy the source of this page.
-------------------------------------------------------------------------------
-- TaskForce class --
-- This module contains the TaskForce class used in --
-- Module:WikiProjectBanner. It is used to generate the task force rows. --
-------------------------------------------------------------------------------
-- Load necessary modules
local Row = require('Module:WikiProjectBanner/Row')
-- Lazily load modules we don't always need
local mShared, Grade
local TaskForce = setmetatable({}, Row)
TaskForce.__index = TaskForce
function TaskForce.new(args, bannerData, cfg, rowCfg)
local obj = Row.new(args, bannerData, cfg, rowCfg)
setmetatable(obj, TaskForce)
-- Quality grade
obj.qualityGrade = obj.bannerData.grades.quality
000
1:0
Template used on this page:
Return to Module:WikiProjectBanner/TaskForce.