Module:Protection banner: Difference between revisions

undo for now - the code looks good, but we will need to change everything over at the same time to avoid it looking like a giant mess
m (switch back to the main config module)
(undo for now - the code looks good, but we will need to change everything over at the same time to avoid it looking like a giant mess)
Line 825:
obj._imageAlt = blurbObj:makeBannerText('alt')
obj._imageLink = blurbObj:makeBannerText('link')
obj._indicatorName_right = cfg.padlockIndicatorNamespadlockPositions[protectionObj.action]
or cfg.padlockIndicatorNamespadlockPositions.default
or 'pp-default55px'
return setmetatable(obj, Padlock)
end
 
function Padlock:__tostring()
local root = mw.html.create('div')
return mw.getCurrentFrame():extensionTag{
root
name = 'indicator',
:addClass('metadata topicon nopopups')
args = {name = self._indicatorName},
:attr('id', 'protected-icon')
content = self:renderImage()
:css{display = 'none', right = self._right}
}
content = :wikitext(self:renderImage())
return tostring(root)
end