summaryrefslogtreecommitdiff
path: root/extensions/Variables/Variables.settings.php
blob: 43b04cdf32bc9ce5a0ad9b6f36162510747e8ecc (plain)
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
<?php

/**
 * File defining the settings for the 'Variables' extension.
 * More info can be found at http://www.mediawiki.org/wiki/Extension:Variables#Configuration
 *
 * NOTICE:
 * =======
 * Changing one of these settings can be done by copying and placing
 * it in LocalSettings.php, AFTER the inclusion of 'Variables'.
 *
 * @file Variables_Settings.php
 * @ingroup Variables
 * @since 2.0
 *
 * @author Daniel Werner
 */

/**
 * Allows to define functions which should not be available within the wiki.
 * 
 * @example
 * # disable '#var_final' and '#vardefineecho' functions:
 * $egVariablesDisabledFunctions = array( 'var_final', 'vardefineecho' );
 * 
 * @since 2.0
 * @var array
 */
$egVariablesDisabledFunctions = array();