1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

[feature/extension-manager] Rename default methods to core methods on finder.

There are now extension_ and core_ methods for all finder settings as well as
a generic method which overwrites both.

PHPBB3-10323
This commit is contained in:
Nils Adermann
2011-11-18 16:42:53 +01:00
parent d8e5783e8c
commit 0d296785b2
7 changed files with 139 additions and 122 deletions

View File

@@ -40,11 +40,9 @@ class phpbb_cron_task_provider extends phpbb_extension_provider
$finder = $this->extension_manager->get_finder();
return $finder
->suffix('_task')
->directory('/cron')
->default_path('includes/cron/task/core/')
->default_suffix('')
->default_directory('')
->extension_suffix('_task')
->extension_directory('/cron')
->core_path('includes/cron/task/core/')
->get_classes();
}
}