mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-13 20:24:08 +02:00
[ticket/11497] Rename set_ext_finder in find_routing_files
PHPBB3-11497
This commit is contained in:
@@ -54,7 +54,7 @@ function phpbb_get_url_matcher(\phpbb\extension\manager $manager, RequestContext
|
||||
function phpbb_create_dumped_url_matcher(\phpbb\extension\manager $manager, $root_path, $php_ext)
|
||||
{
|
||||
$provider = new \phpbb\controller\provider();
|
||||
$provider->set_ext_finder($manager->get_finder());
|
||||
$provider->find_routing_files($manager->get_finder());
|
||||
$routes = $provider->find($root_path)->get_routes();
|
||||
$dumper = new PhpMatcherDumper($routes);
|
||||
$cached_url_matcher_dump = $dumper->dump(array(
|
||||
@@ -74,7 +74,7 @@ function phpbb_create_dumped_url_matcher(\phpbb\extension\manager $manager, $roo
|
||||
function phpbb_create_url_matcher(\phpbb\extension\manager $manager, RequestContext $context, $root_path)
|
||||
{
|
||||
$provider = new \phpbb\controller\provider();
|
||||
$provider->set_ext_finder($manager->get_finder());
|
||||
$provider->find_routing_files($manager->get_finder());
|
||||
$routes = $provider->find($root_path)->get_routes();
|
||||
return new UrlMatcher($routes, $context);
|
||||
}
|
||||
|
@@ -67,7 +67,7 @@ class helper
|
||||
$this->config = $config;
|
||||
$this->phpbb_root_path = $phpbb_root_path;
|
||||
$this->php_ext = $php_ext;
|
||||
$provider->set_ext_finder($manager->get_finder());
|
||||
$provider->find_routing_files($manager->get_finder());
|
||||
$this->route_collection = $provider->find($phpbb_root_path)->get_routes();
|
||||
}
|
||||
|
||||
|
@@ -46,7 +46,7 @@ class provider
|
||||
* @param \phpbb\extension\finder $finder
|
||||
* @return null
|
||||
*/
|
||||
public function set_ext_finder(\phpbb\extension\finder $finder)
|
||||
public function find_routing_files(\phpbb\extension\finder $finder)
|
||||
{
|
||||
// We hardcode the path to the core config directory
|
||||
// because the finder cannot find it
|
||||
|
Reference in New Issue
Block a user