37 lines
917 B
PHP
37 lines
917 B
PHP
<?php defined('SYSPATH') or die('No direct script access.');
|
|
/**
|
|
* Set Kodoc_Missing::create_class as an autoloading to prevent missing classes
|
|
* from crashing the api browser. Classes that are missing a parent will
|
|
* extend this class, and get a warning in the API browser.
|
|
*
|
|
* @package Kohana/Userguide
|
|
* @category Undocumented
|
|
* @author Kohana Team
|
|
* @since 3.0.7
|
|
*/
|
|
abstract class Kohana_Kodoc_Missing {
|
|
|
|
/**
|
|
* Creates classes when they are otherwise not found.
|
|
*
|
|
* Kodoc::create_class('ThisClassDoesNotExist');
|
|
*
|
|
* [!!] All classes created will extend [Kodoc_Missing].
|
|
*
|
|
* @param string class name
|
|
* @return boolean
|
|
* @since 3.0.7
|
|
*/
|
|
public static function create_class($class)
|
|
{
|
|
if ( ! class_exists($class))
|
|
{
|
|
// Create a new missing class
|
|
eval("class {$class} extends Kodoc_Missing {}");
|
|
}
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
} // End Kohana_Kodoc_Missing
|