summaryrefslogtreecommitdiff
path: root/lib/plugins/config/_test/data/config.php
blob: 83255f937554b94a924560e228dc2bae087f630b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php


$conf['int1'] = 42;
$conf['int2'] = 6*7;

$conf['str1']  = 'Hello World';
$conf['str2']  = 'G\'day World';
$conf['str3']  = "Hello World";
$conf['str4']  = "Hello 'World'";
$conf['str5']  = "Hello \"World\"";

$conf['arr1']  = array('foo','bar', 'baz');

$conf['foo']['bar'] = 'x1';
$conf['foo']['baz'] = 'x2';