Files
Phraseanet/lib/Alchemy/Phrasea/ControllerProvider/Prod/Edit.php
jygaulier a76f64e892 [skip ci]
PHRAS-3381_tx-as-classification-plan_MASTER
back controller for ok button
fix : PHRAS-3383
WIP
2021-03-15 10:05:32 +01:00

72 lines
2.3 KiB
PHP

<?php
/*
* This file is part of Phraseanet
*
* (c) 2005-2016 Alchemy
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Alchemy\Phrasea\ControllerProvider\Prod;
use Alchemy\Phrasea\Application as PhraseaApplication;
use Alchemy\Phrasea\Controller\Prod\EditController;
use Alchemy\Phrasea\ControllerProvider\ControllerProviderTrait;
use Alchemy\Phrasea\Core\LazyLocator;
use Silex\Application;
use Silex\ControllerProviderInterface;
use Silex\ServiceProviderInterface;
class Edit implements ControllerProviderInterface, ServiceProviderInterface
{
use ControllerProviderTrait;
public function register(Application $app)
{
$app['controller.prod.edit'] = $app->share(function (PhraseaApplication $app) {
return (new EditController($app))
->setDataboxLoggerLocator($app['phraseanet.logger'])
->setDispatcher($app['dispatcher'])
->setSubDefinitionSubstituerLocator(new LazyLocator($app, 'subdef.substituer'))
;
});
}
public function boot(Application $app)
{
// no-op
}
public function connect(Application $app)
{
$controllers = $this->createAuthenticatedCollection($app);
$firewall = $this->getFirewall($app);
$controllers->before(function () use ($firewall) {
$firewall
->requireNotGuest()
->requireRight(\ACL::CANMODIFRECORD);
});
$controllers->post('/', 'controller.prod.edit:submitAction');
$controllers->get('/vocabulary/{vocabulary}/', 'controller.prod.edit:searchVocabularyAction');
/** @uses \Alchemy\Phrasea\Controller\Prod\EditController::applyJSAction */
$controllers
->post('/applyjs/', 'controller.prod.edit:applyJSAction')
->bind('prod_edit_applyJSAction');
$controllers->post('/apply/', 'controller.prod.edit:applyAction');
$controllers->get('/presets/{preset_id}', 'controller.prod.edit:presetsLoadAction');
$controllers->get('/presets', 'controller.prod.edit:presetsListAction');
$controllers->delete('/presets/{preset_id}', 'controller.prod.edit:presetsDeleteAction');
$controllers->post('/presets', 'controller.prod.edit:presetsSaveAction');
return $controllers;
}
}