ಮೋಡ್ಯೂಲ್:Ns has subpages/doc
ತೊಜುನ
This is the documentation page for ಮೋಡ್ಯೂಲ್:Ns has subpages
| This Lua module is used in system messages. Changes to it can cause immediate changes to the ವಿಕಿಪೀಡಿಯ user interface. To avoid major disruption, any changes should be tested in the module's /sandbox or /testcases subpages, or in your own module sandbox. The tested changes can be added to this page in a single edit. Please discuss changes on the talk page before implementing them. |
| This ಮೋಡ್ಯೂಲ್ is rated as ready for general use. It has reached a mature state, is considered relatively stable and bug-free, and may be used wherever appropriate. It can be mentioned on help pages and other Wikipedia resources as an option for new users. To minimise server load and avoid disruptive output, improvements should be developed through sandbox testing rather than repeated trial-and-error editing. |
This module finds whether a given namespace can have subpages.
Usage
[ಸಂಪೊಲಿಪುಲೆ]From wikitext
[ಸಂಪೊಲಿಪುಲೆ]From wikitext this module must be used via the {{ns has subpages}} template. Please see the template page for documentation.
From Lua
[ಸಂಪೊಲಿಪುಲೆ]Usually Lua modules should use mw.site.namespaces[namespace].hasSubpages rather than this module. But if you have a good reason, it can be accessed like this:
Load the module:
local mNsHasSubpages = require('Module:Ns has subpages')
The subpage information can be found with the ._main function:
mNsHasSubpages._main(ns, frame)
- ns is the namespace name, number, or a page name. It defaults to the current namespace.
- frame is a frame object with which we can call frame:callParserFunction if necessary. This is optional, and intended for internal use.