Попробуйте что-то подобное в классе Bootstrap:
$methods = get_class_methods ('MyBootstrap');
foreach ($methods AS $method) {
if (str_pos ($method, '_init') !== false) {
call_user_func (array ($this, $method));
}
}
get_class_methods - возвращает имена методов класса. Затем найдите методы типа ' _init ' и выполните их.