Files
web-site/Projects/Forum/Config/Routing.php
T
2026-07-01 16:44:17 +03:00

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',
]
];