Add settings for max tree depth and exclusion path.
Fixes T8
This commit is contained in:
parent
05ded3b757
commit
53b593400c
4 changed files with 21 additions and 2 deletions
3
conf/default.php
Normal file
3
conf/default.php
Normal file
|
@ -0,0 +1,3 @@
|
|||
<?php
|
||||
$conf['treedepth'] = 3;
|
||||
$conf['exclusion_mask'] = '/sidebar|wiki(.*)/';
|
8
conf/metadata.php
Normal file
8
conf/metadata.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
$meta['treedepth'] = array(
|
||||
'numeric'
|
||||
);
|
||||
|
||||
$meta['exclusion_mask'] = array(
|
||||
'string'
|
||||
);
|
Reference in a new issue