phpbb_root_path = $phpbb_root_path; $this->php_ext = $php_ext; } public function add_route($name, $url) { $this->routes[$name] = $url; } public function route($route) { return append_sid("{$this->phpbb_root_path}app.{$this->php_ext}/{$this->routes[$route]}"); } }