in 1.3, using the new layout, we have classes which are called something like "MyModule_DBObject_MyClass" ... this is all fine and well and the autoloader works wonderfully.
However: what is the correct way to test whether such a class exists? I basically want the 1.3 equivalent of this:
Code
if (!($class = Loader::loadArrayClassFromModule ('MyModule', $startpageClass))) {
LogUtil::registerError ("blah blah blah");
$startpageClass = 'MyClass';
}
LogUtil::registerError ("blah blah blah");
$startpageClass = 'MyClass';
}
Greetings/Thanks
R
