Jump to content

Module:Number of works

From Marxist Wiki

Documentation for this module may be created at Module:Number of works/doc

-- This module is DEPRECATED. We turned to using DPL lists to count numbers of works in a library card.

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