Jump to content

Module:TEMPLATENAME

From Humanipedia
Revision as of 01:12, 6 June 2024 by wikipedia>Pppery (Protected "Module:TEMPLATENAME": High-risk template or module ([Edit=Require template editor access] (indefinite) [Move=Require template editor access] (indefinite)))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Lua error in package.lua at line 80: module 'Module:Yesno' not found.

Usage

{{#invoke:TEMPLATENAME|main}}

This module returns the name of the page it is being transcluded from. This differs from {{FULLPAGENAME}} which returns the name of the currently viewed page even if it is called from a template. To use this doc page as an example, {{#invoke:TEMPLATENAME|main}} -> Module:TEMPLATENAME/doc while {{FULLPAGENAME}} -> Module:TEMPLATENAME.


local p = {}

function p.main(frame)
	return frame:getParent():getTitle()
end

return p