Files
Phraseanet/lib/Alchemy/Phrasea/ControllerProvider/Admin/Dashboard.php
2015-04-02 10:50:51 +02:00

61 lines
1.8 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2015 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\ControllerProvider\Admin;
use Alchemy\Phrasea\Application as PhraseaApplication;
use Alchemy\Phrasea\Controller\Admin\DashboardController;
use Silex\Application;
use Silex\ControllerCollection;
use Silex\ControllerProviderInterface;
use Silex\ServiceProviderInterface;
class Dashboard implements ControllerProviderInterface, ServiceProviderInterface
{
public function register(Application $app)
{
$app['controller.admin.dashboard'] = $app->share(function (PhraseaApplication $app) {
return new DashboardController($app);
});
}
public function boot(Application $app)
{
}
public function connect(Application $app)
{
/** @var ControllerCollection $controllers */
$controllers = $app['controllers_factory'];
$controllers->before(function () use ($app) {
$app['firewall']->requireAdmin();
});
$controllers->get('/', 'controller.admin.dashboard:slash')
->bind('admin_dashboard');
$controllers->post('/flush-cache/', 'controller.admin.dashboard:flush')
->bind('admin_dashboard_flush_cache');
$controllers->post('/send-mail-test/', 'controller.admin.dashboard:sendMail')
->bind('admin_dashboard_test_mail');
$controllers->post('/reset-admin-rights/', 'controller.admin.dashboard:resetAdminRights')
->bind('admin_dashboard_reset_admin_rights');
$controllers->post('/add-admins/', 'controller.admin.dashboard:addAdmins')
->bind('admin_dashboard_add_admins');
return $controllers;
}
}