Changes
Jump to navigation
Jump to search
no edit summary
{{high-risk|965000+}}
{{Module rating|protected}}
This module finds whether a given [[WP:NS|namespace]] can have subpages.
== Usage ==
=== From wikitext ===
From wikitext this module must be used via the {{tl|ns has subpages}} template. Please see the template page for documentation.
=== From Lua ===
Usually Lua modules should use <code>mw.site.namespaces[''namespace''].hasSubpages</code> rather than this module. But if you have a good reason, it can be accessed like this:
Load the module:
<source lang="lua">
local mNsHasSubpages = require('Module:Ns has subpages')
</source>
The subpage information can be found with the ._main function:
<source lang="lua">
mNsHasSubpages._main(ns, frame)
</source>
* <var>ns</var> is the namespace name, number, or a page name. It defaults to the current namespace.
* <var>frame</var> is a frame object with which we can call frame:callParserFunction if necessary. This is optional, and intended for internal use.
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!-- Categories below this line, please; interwikis at Wikidata -->
}}</includeonly>
{{Module rating|protected}}
This module finds whether a given [[WP:NS|namespace]] can have subpages.
== Usage ==
=== From wikitext ===
From wikitext this module must be used via the {{tl|ns has subpages}} template. Please see the template page for documentation.
=== From Lua ===
Usually Lua modules should use <code>mw.site.namespaces[''namespace''].hasSubpages</code> rather than this module. But if you have a good reason, it can be accessed like this:
Load the module:
<source lang="lua">
local mNsHasSubpages = require('Module:Ns has subpages')
</source>
The subpage information can be found with the ._main function:
<source lang="lua">
mNsHasSubpages._main(ns, frame)
</source>
* <var>ns</var> is the namespace name, number, or a page name. It defaults to the current namespace.
* <var>frame</var> is a frame object with which we can call frame:callParserFunction if necessary. This is optional, and intended for internal use.
<includeonly>{{#ifeq:{{SUBPAGENAME}}|sandbox | |
<!-- Categories below this line, please; interwikis at Wikidata -->
}}</includeonly>