Add page to show the list of plugins

This commit is contained in:
Frederic Guillot
2015-09-26 15:57:39 -04:00
parent 47c1bc9652
commit 9ca4b43a97
30 changed files with 194 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
namespace ServiceProvider;
use Core\Plugin\Loader;
use Core\ObjectStorage\FileStorage;
use Core\Paginator;
use Core\OAuth2;
@@ -117,5 +118,7 @@ class ClassProvider implements ServiceProviderInterface
$container['objectStorage'] = function() {
return new FileStorage(FILES_DIR);
};
$container['pluginLoader'] = new Loader($container);
}
}