Extension:AutoCreatePage

Category:Extensions without an imageCategory:Extensions without a compatibility policyCategory:GPL licensed extensions
MediaWiki extensions manual
AutoCreatePage
Release status: stableCategory:Stable extensions
Implementation Parser function Category:Parser function extensions
Description Provides a parser function to create additional pages automatically when a page is saved
Author(s)
Maintainer(s) Universal Omega
Latest version 0.9 (2022-08-19)
MediaWiki 1.36+Category:Extensions with manual MediaWiki version
PHP 7.3+
Database changes No
License GNU General Public License 2.0 or later
Download Category:Extensions in GitHub version control
README
  • $egAutoCreatePageMaxRecursion
  • $egAutoCreatePageIgnoreEmptyTitle
  • $egAutoCreatePageNamespaces
Category:All extensions

The AutoCreatePage extension provides a parser function called #createpageifnotex: that creates a page of a given title if no such page exists yet. The function takes the page title and the wikitext that is used to create the page as its only parameters. This can be used by templates that want to create some content on separate pages, which is especially useful when creating pages with Page Forms or when using Semantic MediaWiki to create query pages (which may be too big to fit on the same page).

Usage

The general syntax for using the parser function is:

{{#createpageifnotex:
 Name of the page to create
 |Initial content of the page if created
}}

All newly created pages will be attributed to the user who edited the page where the parser function was used. It is possible to use templates and parser functions as part of the initial content by surrounding them with <nowiki> tags. Example:

{{#createpageifnotex:
 Name of the page to create
 |&lt;nowiki>{{TemplateName|parameter=value}}&lt;/nowiki>
}}

However, newly created pages can never create additional pages (this is a feature; otherwise one could accidentally create large numbers of pages, where each new page creates another one).

Installation

Configuration

The extension supports three configuration variables, that can be set in the "LocalSettings.php" file.

$wgAutoCreatePageMaxRecursion
The maximum recursion depth to which calls of createpageifnotex are executed on created pages. Default: 1.
$wgAutoCreatePageIgnoreEmptyTitle
If invocations of createpageifnotex should be silently ignored. Default: false (will put an error message on the wiki page).
$wgAutoCreatePageIgnoreEmptyContent
If invocations of createpageifnoconent should be silently ignored. Default: false (will put an error message on the wiki page).
$wgAutoCreatePageNamespaces
The list of namespaces in which calls of createpageifnotex are executed. If your call originates from a page not in one of these namespaces, it gets ignored. Defaults to $wgContentNamespaces. An example for an alternative setting:
$wgAutoCreatePageNamespaces = [
    NS_MAIN,
    NS_USER,
    NS_TEMPLATE,
    NS_CUSTOM
];


See also

Category:Page creation extensions
Category:All extensions Category:Extensions in GitHub version control Category:Extensions included in Miraheze Category:Extensions included in WikiForge Category:Extensions with manual MediaWiki version Category:Extensions without a compatibility policy Category:Extensions without an image Category:GPL licensed extensions Category:Page creation extensions Category:ParserFirstCallInit extensions Category:Parser function extensions Category:RevisionDataUpdates extensions Category:Stable extensions