phpbb\routing\router::get_routes PHP 메소드

get_routes() 공개 메소드

Get the list of routes
public get_routes ( ) : RouteCollection
리턴 Symfony\Component\Routing\RouteCollection Get the route collection
    public function get_routes()
    {
        if ($this->route_collection == null || empty($this->routing_files)) {
            $this->find_routing_files($this->extension_manager !== null ? $this->extension_manager->all_enabled(false) : array())->find($this->phpbb_root_path);
        }
        return $this->route_collection;
    }