-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLoops_Settings.php
More file actions
31 lines (29 loc) · 882 Bytes
/
Loops_Settings.php
File metadata and controls
31 lines (29 loc) · 882 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
/**
* File defining the settings for the 'Loops' extension.
* More info can be found at http://www.mediawiki.org/wiki/Extension:Loops#Configuration
*
* NOTICE:
* =======
* Changing one of these settings can be done by copying and placing
* it in LocalSettings.php, AFTER the inclusion of 'Loops'.
*
* @file Loops_Settings.php
* @ingroup Loops
* @since 0.4
*
* @author Daniel Werner
*/
/**
* Allows to define which functionalities provided by 'Loops' should be enabled for the wiki.
* If extension 'Variables' is not installed, '#loop', '#forargs' and '#fornumargs' will be
* disabled automatically.
*
* @example
* # enable '#while' and '#dowhile' parser functions only:
* egLoopsEnabledFunctions = array( 'while', 'dowhile' );
*
* @since 0.4
* @var array
*/
$wgLoopsEnabledFunctions = array( 'while', 'dowhile', 'loop', 'forargs', 'fornumargs' );