This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
redir/includes/kohana/modules/userguide/init.php

45 lines
1.1 KiB
PHP
Raw Normal View History

2011-07-20 12:57:07 +00:00
<?php defined('SYSPATH') or die('No direct script access.');
// Static file serving (CSS, JS, images)
2013-04-13 06:17:56 +00:00
Route::set('docs/media', 'guide-media(/<file>)', array('file' => '.+'))
2011-07-20 12:57:07 +00:00
->defaults(array(
2013-04-13 06:17:56 +00:00
'controller' => 'Userguide',
2011-07-20 12:57:07 +00:00
'action' => 'media',
'file' => NULL,
));
// API Browser, if enabled
2013-04-13 06:17:56 +00:00
if (Kohana::$config->load('userguide.api_browser') === TRUE)
2011-07-20 12:57:07 +00:00
{
2013-04-13 06:17:56 +00:00
Route::set('docs/api', 'guide-api(/<class>)', array('class' => '[a-zA-Z0-9_]+'))
2011-07-20 12:57:07 +00:00
->defaults(array(
2013-04-13 06:17:56 +00:00
'controller' => 'Userguide',
2011-07-20 12:57:07 +00:00
'action' => 'api',
'class' => NULL,
));
}
// User guide pages, in modules
Route::set('docs/guide', 'guide(/<module>(/<page>))', array(
'page' => '.+',
))
->defaults(array(
2013-04-13 06:17:56 +00:00
'controller' => 'Userguide',
2011-07-20 12:57:07 +00:00
'action' => 'docs',
'module' => '',
2013-04-13 06:17:56 +00:00
));
// Simple autoloader used to encourage PHPUnit to behave itself.
class Markdown_Autoloader {
public static function autoload($class)
{
if ($class == 'Markdown_Parser' OR $class == 'MarkdownExtra_Parser')
{
include_once Kohana::find_file('vendor', 'markdown/markdown');
}
}
}
// Register the autoloader
spl_autoload_register(array('Markdown_Autoloader', 'autoload'));