class ) as $subclass ) { echo $subclass . "\n"; $task = new $subclass(); $task->init(); $task->process(); } } /** * Overload this method to contain the task logic. */ function process() {} } ?>