跳转到内容

模組:Article history/Category

被永久保护的模块
维基百科,自由的百科全书

这是Module:Article history/Category当前版本,由Xiplus-abot留言 | 贡献编辑于2020年8月17日 (一) 00:47 (已更改“Module:Article history/Category”的保护等级:高風險模板:5556引用<!-- 機器人3 -->([编辑=仅允许模板编辑员和管理员](无限期)[移动=仅允许模板编辑员和管理员](无限期)))。这个网址是本页该版本的固定链接。

(差异) ←上一修订 | 最后版本 (差异) | 下一修订→ (差异)
-------------------------------------------------------------------------------
-- Category class
-- This module makes a Category class for use in [[Module:Article history]].
-- It provides a unified interface for the creation of category links. With
-- this class, categories can passed between objects without concerns about
-- interoperability and still have their values and sort keys easily
-- accessible.
-------------------------------------------------------------------------------

local checkType = require('libraryUtil').checkType
local CATEGORY_NS_TEXT = mw.site.namespaces[14].name

local Category = {}
Category.__index = Category

function Category.new(category, sortKey)
	checkType('Category.new', 1, category, 'string')
	checkType('Category.new', 2, sortKey, 'string', true)
	local obj = setmetatable({}, Category)
	obj.category = category
	obj.sortKey = sortKey
	return obj
end

function Category:__tostring()
	if self.sortKey then
		return string.format(
			'[[%s:%s|%s]]',
			CATEGORY_NS_TEXT,
			self.category,
			self.sortKey
		)
	else
		return string.format(
			'[[%s:%s]]',
			CATEGORY_NS_TEXT,
			self.category
		)
	end
end

return Category