Open GoogleCodeExporter opened 8 years ago
I already looked into this once and it wasn't that easy to do.
I'll accept this issue though and take a second look when I have time.
Original comment by Christof...@gmail.com
on 27 Feb 2011 at 11:52
I was able to add code for this:
Check this section:
$pi = pathinfo($controller['path']);
$className = $pi['filename'];
// check if this class is loaded
if (!class_exists($className, $autoload = false)) {
include($controller['path']);
}
try {
if (class_exists($className)) {
$o = new $className($id = time(), $module = '');
$objActions = $o->actions();
if (!empty($objActions)) {
foreach ($objActions as $name=>$class) {
$actions[strtolower($name)] = array(
'name' => $name,
'line' => 0
);
}
}
}
} catch (Exception $e) {
// ignore any exception that might happened
}
From this GIST:
https://gist.github.com/1269919
Original comment by pentium10
on 7 Oct 2011 at 9:47
Original issue reported on code.google.com by
iksm...@gmail.com
on 18 Feb 2011 at 7:36