Difference between revisions of "Module:IsValidPageName"

From Γνωσιακή Βάση Υπηρεσιών και Διαδικασιών του Δημοσίου Τομέα
Jump to: navigation, search
m (Εισήχθη 1 αναθεώρηση)
 
m (Εισήχθη 1 αναθεώρηση)
 
(No difference)

Latest revision as of 15:27, 5 February 2018

Documentation for this module may be created at Module:IsValidPageName/doc

-- This module implements [[Template:isValidPageName]].

local export = {}

function export.isValidPageName(frame)
	local success, res = pcall(mw.title.new, frame.args[1])
	if success and res then
		return "valid"
	else
		return ""
	end
end

return export