Extension:Page Forms/Pages spéciales

This page is a translated version of the page Extension:Page Forms/Special pages and the translation is 46% complete.

Page Forms définit différentes pages spéciales utilisées pour une variété d'usages.

Cinq pages spéciales sont définies comme formulaires d'aide, pour aider les utilisateurs à la création de structure de données:

  • Special:CreateForm - permet de créer un nouveau formulaire. (Voir un exemple)
  • Special:CreateTemplate - permet de créer un nouveau modèle. (Voir un exemple)
  • Special:CreateProperty - permet de créer un nouvel attribut Semantic MediaWiki. Disponible seulement si Semantic MediaWiki est installé. (Voir un exemple)
  • Special:CreateCategory - permet de créer une nouvelle catégorie. (Voir un exemple)
  • Special:CreateClass - une page qui crée d'un coup tous les éléments d'une classe unique  : modèle, formulaire, catégorie et, si Semantic MediaWiki est installé, attributs. L'accès à cette page est régie par la permission MediaWiki 'createclass' ; par défaut elle est disponible pour tout utilisateur identifié.

Voir la page Guide de démarrage pour une introduction à l'utilisation de ces formulaires d'aide.

Les quatre premières de ces pages spéciales peuvent aussi accédées directement depuis la page respectivement d'un formulaire, d'un modèle, d'un attribut ou d'une catégorie, si une telle page n'a pas encore été crée. Any such page should have, in addition to the standard "Create" tab, a "Create with form" tab that brings users to an interface for creating that page with the appropriate helper form.

This "Create with form" tab can be disabled for templates and categories, if you don't want users to always create those using the helper forms. To do that, add the following to LocalSettings.php, after the inclusion of Page Forms:

$wgPageFormsShowTabsForAllHelperForms = false;

Two special pages provide lists of the data-structure pages within the wiki:

Finally, four special pages are used in the standard running of Page Forms:

  • Special:FormEdit - lets a user either create or edit a page using a user-created form. (See example of page.)
  • Special:FormStart - used to route a user to either 'FormEdit' or the relevant page's "edit with form" tab. This page should not be accessed directly by users.
  • Special:RunQuery - lets a user run a query, using a form; see Creating query forms for more information.
  • Special:UploadWindow - lets a user upload a file; very similar to the standard Special:Upload page, but without the skin. This page is called from within a form, and should not be accessed directly by users.
  • Special:MultiPageEdit - lets a user select a template and edit all the pages that contain it using a spreadsheet-like interface. The user can also create new pages and rename existing ones. Other features of the special page include pagination and a selector for selecting the number of rows to display at once. It currently supports text, text area, checkbox, date, combobox and tokens input types. (See example of page.)