Moduł:Wskaźnik
W tym module nie ma dokumentacji. Jeśli wiesz jak używać tego modułu, proszę, podaj odpowiednie informacje.
local p = {}
function p.indicator(frame)
local file = frame.args['file']
if not file or file == '{{{1}}}.png|32px|{{{1}}}|link=|alt={{{1}}}' then
error('file')
else
frame:extensionTag
{
name = 'indicator',
content = '[[Plik:'..file..']]',
args =
{
name = frame.args['name'] or tostring(os.time())
}
}
end
end
return p