Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Number of works: Difference between revisions

From ProleWiki, the proletarian encyclopedia
No edit summary
(reverted to july 2023 version)
Tag: Manual revert
 
(6 intermediate revisions by the same user not shown)
Line 4: Line 4:
     local category = frame.args.category or ''
     local category = frame.args.category or ''
     local pages = mw.site.stats.pagesInCategory(category)
     local pages = mw.site.stats.pagesInCategory(category)
     return tostring(pages)
      
    if tonumber(pages) == 1 then
        return "1 work"
    else
        return pages .. " works"
    end
end
end



Latest revision as of 15:19, 14 September 2024

local p = {}

function p.getWorkCount(frame)
    local category = frame.args.category or ''
    local pages = mw.site.stats.pagesInCategory(category)
    
    if tonumber(pages) == 1 then
        return "1 work"
    else
        return pages .. " works"
    end
end

function p.main(frame)
    return p.getWorkCount(frame)
end

return p