Line 1: Line 1:
== Installation ==
+
FlexForm is installed using [https://www.mediawiki.org/wiki/Composer/For_extensions Composer]:  
FlexForm is installed using Composer. Read more here : https://www.mediawiki.org/wiki/Composer/For_extensions
 
 
 
The Composer required name is : wikibase-solutions/flex-form
 
  
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
 
composer require wikibase-solutions/flex-form
 
composer require wikibase-solutions/flex-form
 
</syntaxhighlight>
 
</syntaxhighlight>
 
  
 
==== Setup ====
 
==== Setup ====
You can tweak '''FlexForm''' to an extent in your Localsettings.php<syntaxhighlight lang="php">
+
You can tweak '''FlexForm''' to an extent in your <code>LocalSettings.php</code> file:
$wgFlexFormConfig['secure'] = true; //( default is true ). Will render form that make no sense when inspected in the browser
 
  
$wgFlexFormConfig['sec_key'] = ""; // A salt key for encryption. Used together with "secure" option. Must be set when using multiple instances of a wiki
+
<syntaxhighlight lang="php">
 +
// Will render form that makes no sense when inspected in the browser.
 +
$wgFlexFormConfig['secure'] = true;
  
$wgFlexFormConfig['auto_save_interval'] = 30000; // Interval time in ms, defaults to 3 minutes (180000 ms). Form is submitted on each interval regardless of changes.
+
// A salt key for encryption. Used together with "secure" option. Must be set when using multiple instances of a wiki.
 +
$wgFlexFormConfig['sec_key'] = "";
  
$wgFlexFormConfig['auto_save_after_change'] = 3000; // Time in ms, defaults to 3 seconds (3000 ms). Form is submitted after the specified time, timer starts when there is a change in the form. Timer resets if there is another change before the time has passed.
+
// Interval time in ms, defaults to 3 minutes (180000 ms). Form is submitted on each interval regardless of changes.
 +
$wgFlexFormConfig['auto_save_interval'] = 30000;
  
$wgFlexFormConfig['auto_save_btn_on'] = 'Autosave on'; // text on the autosave button to toggle on
+
// Time in ms, defaults to 3 seconds (3000 ms). Form is submitted after the specified time, timer starts when there is a change in the form. Timer resets if there is another change before the time has passed.
 +
$wgFlexFormConfig['auto_save_after_change'] = 3000;
  
$wgFlexFormConfig['auto_save_btn_off'] = 'Autosave off'; // text on the autosave button to toggle off
+
// Text on the autosave button to toggle on.
 +
$wgFlexFormConfig['auto_save_btn_on'] = 'Autosave on';
  
$wgFlexFormConfig['FlexFormDefaultTheme'] = "plain"; // Currently the only form
+
// Text on the autosave button to toggle off.
 +
$wgFlexFormConfig['auto_save_btn_off'] = 'Autosave off';
  
$wgFlexFormConfig['rc_site_key'] = ""; // reCaptcha site key
+
// Currently the only form.
 +
$wgFlexFormConfig['FlexFormDefaultTheme'] = "plain";
  
$wgFlexFormConfig['rc_secret_key'] = ""; // reCaptcha secret key
+
// reCaptcha site key.
 +
$wgFlexFormConfig['rc_site_key'] = "";
  
$wgFlexFormConfig['file_temp_path'] = ""; // Where to store images temporarily that need to be format converted
+
// reCaptcha secret key.
 +
$wgFlexFormConfig['rc_secret_key'] = "";
  
$wgFlexFormConfig['can_create_user'] = ""; // Defaults to false. Set to yes if FlexForm is allowed to create new users
+
// Where to store images temporarily that need to be format converted.
 +
$wgFlexFormConfig['file_temp_path'] = "";
  
$wgFlexFormConfig['filter_input_tags'] = false; // Defaults to false. Will filter all parser arguments to plain text, except value parameters. Will also disallow onClick and onFocus parameter. This feature will most likely be removed in future updates.
+
// Defaults to false. Set to yes if FlexForm is allowed to create new users.
 +
$wgFlexFormConfig['can_create_user'] = "";
  
$wgFlexFormConfig['allowedGroups'] = ["sysop","moderator"]; // Defaults to sysop. Only a user in the allowedGroups is able to edit pages with a FlexForm in the source.
+
// Defaults to false. Will filter all parser arguments to plain text, except value parameters. Will also disallow onClick and onFocus parameter. This feature will most likely be removed in future updates.
 +
$wgFlexFormConfig['filter_input_tags'] = false;
  
$wgFlexFormConfig['renderonlyapprovedforms'] = true; // Defaults to true. When a user in the allowedGroups creates a form it will become valid and will be rendered. Someone not in the allowedGroups can create a form and save it, but it will never be rendered until a user from the allowedGroups will edit and re-save the page. Only then will a form become valid. The message "FORM CANNOT BE RENDERED, NOT VALIDATED" will be shown instead of the form when it is invalid or depending on the next setting an image stating it cannot be rendered.
+
// Defaults to sysop. Only a user in the allowedGroups is able to edit pages with a FlexForm in the source.
 +
$wgFlexFormConfig['allowedGroups'] = ["sysop","moderator"];
  
$wgFlexFormConfig['renderi18nErrorInsteadofImageForApprovedForms'] = false; // When a form is invalid, an invalid image will be rendered instead of the form. Set to true to render i18n invalid message.
+
// Defaults to true. When a user in the allowedGroups creates a form it will become valid and will be rendered. Someone not in the allowedGroups can create a form and save it, but it will never be rendered until a user from the allowedGroups will edit and re-save the page. Only then will a form become valid. The message "FORM CANNOT BE RENDERED, NOT VALIDATED" will be shown instead of the form when it is invalid or depending on the next setting an image stating it cannot be rendered.
 +
$wgFlexFormConfig['renderonlyapprovedforms'] = true;
  
$wgFlexFormConfig['userscaneditallpages'] = false; // Defaults to false. This differs from FlexForm before 2.0. FlexForm will now honor the UserCan functions in MediaWiki. If a form edits or creates a page a user has no rights to, the form will fail.
+
// When a form is invalid, an invalid image will be rendered instead of the form. Set to true to render i18n invalid message.
 +
$wgFlexFormConfig['renderi18nErrorInsteadofImageForApprovedForms'] = false;
  
$wgFlexFormConfig['hideEdit'] = true; // Defaults to true. If a user is not in the allowedGroups then hide edit and editsource menu items for any page containing a FlexForm form.
+
// Defaults to false. This differs from FlexForm before 2.0. FlexForm will now honor the UserCan functions in MediaWiki. If a form edits or creates a page a user has no rights to, the form will fail.
 +
$wgFlexFormConfig['userscaneditallpages'] = false;
  
$wgFlexFormConfig['create-seo-titles'] = true; // Defaults to false. Will turn titles given to wscreate into url friendly slugs. Creating only latin character and converting spaces and special characters.
+
// Defaults to true. If a user is not in the allowedGroups then hide edit and editsource menu items for any page containing a FlexForm form.
 +
$wgFlexFormConfig['hideEdit'] = true;
  
 +
// Defaults to false. Will turn titles given to wscreate into url friendly slugs. Creating only latin character and converting spaces and special characters.
 +
$wgFlexFormConfig['create-seo-titles'] = true;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
==== Add the extension to localsettings ====
+
==== Installation ====
Add the following line at the end of your LocalSettings.php to enable the extension :
+
* Add the following line at the end of your <code>LocalSettings.php</code> to enable the extension:
 +
 
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
 
wfLoadExtension( 'FlexForm' );
 
wfLoadExtension( 'FlexForm' );
 
</syntaxhighlight>
 
</syntaxhighlight>
  
It is also a good idea to turn off parsing cache when using dynamic forms like FlexForm.
+
* It is also recommended to turn off the parser cache when using FlexForm:
 +
 
 
<syntaxhighlight lang="php">
 
<syntaxhighlight lang="php">
 
$wgParserCacheType = CACHE_NONE;
 
$wgParserCacheType = CACHE_NONE;
 
</syntaxhighlight>
 
</syntaxhighlight>
  
==== Finally ====
+
* Run the [https://www.mediawiki.org/wiki/Manual:Update.php update script] which will automatically create the necessary database tables that this extension needs.
Run the update script (https://www.mediawiki.org/wiki/Manual:Update.php) which will automatically create the necessary database tables that this extension needs.
+
* Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
  
Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
+
==== Notification/Messages ====
 +
FlexForm has a notification system build in. This is used to show possible errors or success/custom messages. To enable this, add the following to your header page:
  
==== Notification/Messages ====
+
<syntaxhighlight lang="php">
'''FlexForm''' has a notification system build in. This is used to show possible errors or success / custom  messages.
 
To enable this.. add to your header page :<syntaxhighlight lang="php">
 
 
<_form showmessages />
 
<_form showmessages />
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 15:43, 3 January 2023

FlexForm is installed using Composer:

composer require wikibase-solutions/flex-form

Setup

You can tweak FlexForm to an extent in your LocalSettings.php file:

// Will render form that makes no sense when inspected in the browser.
$wgFlexFormConfig['secure'] = true;

// A salt key for encryption. Used together with "secure" option. Must be set when using multiple instances of a wiki.
$wgFlexFormConfig['sec_key'] = "";

// Interval time in ms, defaults to 3 minutes (180000 ms). Form is submitted on each interval regardless of changes.
$wgFlexFormConfig['auto_save_interval'] = 30000;

// Time in ms, defaults to 3 seconds (3000 ms). Form is submitted after the specified time, timer starts when there is a change in the form. Timer resets if there is another change before the time has passed.
$wgFlexFormConfig['auto_save_after_change'] = 3000;

// Text on the autosave button to toggle on.
$wgFlexFormConfig['auto_save_btn_on'] = 'Autosave on';

// Text on the autosave button to toggle off.
$wgFlexFormConfig['auto_save_btn_off'] = 'Autosave off';

// Currently the only form.
$wgFlexFormConfig['FlexFormDefaultTheme'] = "plain";

// reCaptcha site key.
$wgFlexFormConfig['rc_site_key'] = "";

// reCaptcha secret key.
$wgFlexFormConfig['rc_secret_key'] = "";

// Where to store images temporarily that need to be format converted.
$wgFlexFormConfig['file_temp_path'] = "";

// Defaults to false. Set to yes if FlexForm is allowed to create new users.
$wgFlexFormConfig['can_create_user'] = "";

// Defaults to false. Will filter all parser arguments to plain text, except value parameters. Will also disallow onClick and onFocus parameter. This feature will most likely be removed in future updates.
$wgFlexFormConfig['filter_input_tags'] = false;

// Defaults to sysop. Only a user in the allowedGroups is able to edit pages with a FlexForm in the source.
$wgFlexFormConfig['allowedGroups'] = ["sysop","moderator"];

// Defaults to true. When a user in the allowedGroups creates a form it will become valid and will be rendered. Someone not in the allowedGroups can create a form and save it, but it will never be rendered until a user from the allowedGroups will edit and re-save the page. Only then will a form become valid. The message "FORM CANNOT BE RENDERED, NOT VALIDATED" will be shown instead of the form when it is invalid or depending on the next setting an image stating it cannot be rendered.
$wgFlexFormConfig['renderonlyapprovedforms'] = true;

// When a form is invalid, an invalid image will be rendered instead of the form. Set to true to render i18n invalid message.
$wgFlexFormConfig['renderi18nErrorInsteadofImageForApprovedForms'] = false;

// Defaults to false. This differs from FlexForm before 2.0. FlexForm will now honor the UserCan functions in MediaWiki. If a form edits or creates a page a user has no rights to, the form will fail.
$wgFlexFormConfig['userscaneditallpages'] = false;

// Defaults to true. If a user is not in the allowedGroups then hide edit and editsource menu items for any page containing a FlexForm form.
$wgFlexFormConfig['hideEdit'] = true;

// Defaults to false. Will turn titles given to wscreate into url friendly slugs. Creating only latin character and converting spaces and special characters.
$wgFlexFormConfig['create-seo-titles'] = true;

Installation

  • Add the following line at the end of your LocalSettings.php to enable the extension:
wfLoadExtension( 'FlexForm' );
  • It is also recommended to turn off the parser cache when using FlexForm:
$wgParserCacheType = CACHE_NONE;
  • Run the update script which will automatically create the necessary database tables that this extension needs.
  • Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

Notification/Messages

FlexForm has a notification system build in. This is used to show possible errors or success/custom messages. To enable this, add the following to your header page:

<_form showmessages />