This repository has been archived by the owner on Sep 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.realurl_conf.php
60 lines (59 loc) · 1.83 KB
/
example.realurl_conf.php
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
$example = [];
$example['postVarSets'] = [
'_DEFAULT' => [
'forum' => [
[
'GETvar' => 'tx_typo3bb_forum[action]'
],
[
'GETvar' => 'tx_typo3bb_forum[controller]'
],
[
'cond' => [
'prevValueInList' => 'Board'
],
'GETvar' => 'tx_typo3bb_forum[board]',
'lookUpTable' => [
'table' => 'tx_typo3bb_domain_model_board',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => [
'strtolower' => 1,
'spaceCharacter' => '-',
],
],
],
[
'cond' => [
'prevValueInList' => 'Topic'
],
'GETvar' => 'tx_typo3bb_forum[topic]',
'lookUpTable' => [
'table' => 'tx_typo3bb_domain_model_topic',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 1,
'useUniqueCache_conf' => [
'strtolower' => 1,
'spaceCharacter' => '-',
],
]
],
[
'GETvar' => 'tx_typo3bb_forum[post]',
]
],
'messages' => [
[
'GETvar' => 'tx_typo3bb_messages[action]'
],
[
'GETvar' => 'tx_typo3bb_messages[controller]'
],
]
]
];