22 lines
616 B
PHP
22 lines
616 B
PHP
<?php return
|
|
[
|
|
'openController' => 'Forum',
|
|
'openFunction' => 'main',
|
|
'show404' => 'show404',
|
|
'requestMethods' =>
|
|
[
|
|
'page' => '',
|
|
'disallowMethods' => [],
|
|
'allowMethods' => []
|
|
],
|
|
'patternType' => 'classic',
|
|
'changeUri' => [
|
|
'category/(.*)' => 'Forum/category/$1',
|
|
'newsubject' => 'Forum/newsubject',
|
|
'newthread/(.*)' => 'Forum/newthread/$1',
|
|
'subject/(.*)' => 'Forum/subject/$1',
|
|
'konu_duzenle/(.*)' => 'Forum/konu_duzenle/$1',
|
|
'delete/(.*)' => 'Forum/delete/$1',
|
|
]
|
|
];
|