This class, or a class parent, could not be found or loaded. This could be caused by a missing module or other dependancy. The documentation for class may not be complete!
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.
Class declared in MODPATH/userguide/classes/kodoc/missing.php on line 3.
Creates classes when they are otherwise not found.
Kodoc::create_class(
'ThisClassDoesNotExist'
);
All classes created will extend Kodoc_Missing.
string
$class
required - Class nameboolean
public
static
function
create_class(
$class
)
{
if
( !
class_exists
(
$class
))
{
// Create a new missing class
eval
(
"class {$class} extends Kodoc_Missing {}"
);
}
return
TRUE;
}