다른 명령
이 모듈에 대한 설명문서는 모듈:SortPlayer/설명문서에서 만들 수 있습니다
local p = {}
function p.sortCategory(frame)
-- DPL3 템플릿 호출
local dplResult = frame:expandTemplate{
title = "DynamicPageList3",
args = {
category = "선수", -- 분류 이름 (필수)
namespace = "Main", -- 네임스페이스 (필수)
addpagevariables = "true", -- 문서 변수 가져오기 활성화
includepage = "{Prize}" -- Prize 값을 포함
}
}
-- DPL3 결과가 없거나 비어 있을 경우 처리
if not dplResult or dplResult == "" then
return "DPL3 결과를 가져오지 못했습니다. 분류 또는 네임스페이스를 확인하세요."
end
-- 결과 반환
return dplResult
end
return p