forked from kohana/userguide
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathinit.php
30 lines (27 loc) · 776 Bytes
/
init.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
<?php defined('SYSPATH') or die('No direct script access.');
// Static file serving (CSS, JS, images)
Route::set('docs/media', 'guide/media(/<file>)', array('file' => '.+'))
->defaults(array(
'controller' => 'userguide',
'action' => 'media',
'file' => NULL,
));
// API Browser, if enabled
if (Kohana::config('userguide.api_browser') === TRUE)
{
Route::set('docs/api', 'guide/api(/<class>)', array('class' => '[a-zA-Z0-9_]+'))
->defaults(array(
'controller' => 'userguide',
'action' => 'api',
'class' => NULL,
));
}
// User guide pages, in modules
Route::set('docs/guide', 'guide(/<module>(/<page>))', array(
'page' => '.+',
))
->defaults(array(
'controller' => 'userguide',
'action' => 'docs',
'module' => '',
));