Add basic template and hooks in Admin

This commit is contained in:
Benoît Burnichon
2015-08-27 17:16:07 +02:00
parent 68aab17157
commit c01f3f238f
8 changed files with 221 additions and 0 deletions

View File

@@ -43,6 +43,10 @@ class PluginServiceProvider implements ServiceProviderInterface
$app['plugins.manager'] = $app->share(function (Application $app) {
return new PluginManager($app['plugin.path'], $app['plugins.plugins-validator'], $app['conf']);
});
$app['plugins'] = $app->share(function () {
return new Pimple();
});
$app['plugin.workzone.basket.actionbar'] = $app->share(function () {
return new Pimple();
});