-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrealurl_conf.php
41 lines (41 loc) · 975 Bytes
/
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
<?php
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl'] = array(
'_DEFAULT' => array(
'fixedPostVars' => array(
'paginate' => array(
array(
'GETvar' => 'tx_myext_mymodel[controller]',
'noMatch' => 'bypass'
),
array(
'GETvar' => 'tx_myext_mymodel[action]',
'noMatch' => 'bypass'
),
array(
'GETvar' => 'tx_myext_mymodel[mymodel]',
'lookUpTable' => array(
'table' => 'tx_myext_domain_model_mymodel',
'id_field' => 'uid',
'alias_field' => 'title',
'addWhereClause' => ' AND NOT deleted',
'useUniqueCache' => 'TRUE',
'useUniqueCache_conf' => array(
'strtolower' => 'TRUE',
'spaceCharacter' => '-'
),
'autoUpdate' => 1
)
),
array(
'GETvar' => 'tx_myext_mymodel[@widget_0][currentPage]'
),
array(
'GETvar' => 'tx_myext_mymodel[@widget_0][addQueryStringMethod]',
'noMatch' => 'bypass'
)
),
'1' => 'paginate'
)
)
)
?>