acm_type = $acm_type; } public function get_driver() { $class_name = 'phpbb_cache_driver_' . $this->acm_type; return new $class_name(); } public function get_service() { $driver = $this->get_driver(); $service = new phpbb_cache_service($driver); return $service; } }