1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/extension-manager] Porting cron tasks over to the extension finder

PHPBB3-10323
This commit is contained in:
Nils Adermann
2011-07-13 08:22:27 -04:00
parent 14f1e581fa
commit fabde989a2
11 changed files with 100 additions and 145 deletions

View File

@@ -9,8 +9,10 @@
class phpbb_mock_extension_manager extends phpbb_extension_manager
{
public function __construct($extensions = array())
public function __construct($phpbb_root_path, $extensions = array())
{
$this->phpbb_root_path = $phpbb_root_path;
$this->phpEx = '.php';
$this->extensions = $extensions;
}
}