78 lines
2.8 KiB
PHP
78 lines
2.8 KiB
PHP
<?php
|
|
/*************************************************************************************/
|
|
/* This file is part of the Thelia package. */
|
|
/* */
|
|
/* Copyright (c) OpenStudio */
|
|
/* email : dev@thelia.net */
|
|
/* web : http://www.thelia.net */
|
|
/* */
|
|
/* For the full copyright and license information, please view the LICENSE.txt */
|
|
/* file that was distributed with this source code. */
|
|
/*************************************************************************************/
|
|
|
|
namespace Colissimo\Controller;
|
|
|
|
use Colissimo\Colissimo;
|
|
use Colissimo\Model\Config\ColissimoConfigValue;
|
|
use Symfony\Component\HttpFoundation\RedirectResponse;
|
|
use Thelia\Controller\Admin\BaseAdminController;
|
|
use Thelia\Core\Security\AccessManager;
|
|
use Thelia\Core\Security\Resource\AdminResources;
|
|
use Thelia\Form\Exception\FormValidationException;
|
|
use Thelia\Tools\URL;
|
|
|
|
/**
|
|
* Class Configuration
|
|
* @package Colissimo\Controller
|
|
* @author Thomas Arnaud <tarnaud@openstudio.fr>
|
|
*/
|
|
class Configuration extends BaseAdminController
|
|
{
|
|
public function editConfiguration()
|
|
{
|
|
if (null !== $response = $this->checkAuth(
|
|
AdminResources::MODULE,
|
|
[Colissimo::DOMAIN_NAME],
|
|
AccessManager::UPDATE
|
|
)) {
|
|
return $response;
|
|
}
|
|
|
|
$form = $this->createForm('colissimo.configuration');
|
|
$error_message = null;
|
|
|
|
try {
|
|
$validateForm = $this->validateForm($form);
|
|
$data = $validateForm->getData();
|
|
|
|
Colissimo::setConfigValue(
|
|
ColissimoConfigValue::ENABLED,
|
|
is_bool($data["enabled"]) ? (int) ($data["enabled"]) : $data["enabled"]
|
|
);
|
|
|
|
return $this->redirectToConfigurationPage();
|
|
|
|
} catch (FormValidationException $e) {
|
|
$error_message = $this->createStandardFormValidationErrorMessage($e);
|
|
}
|
|
|
|
if (null !== $error_message) {
|
|
$this->setupFormErrorContext(
|
|
'configuration',
|
|
$error_message,
|
|
$form
|
|
);
|
|
$response = $this->render("module-configure", ['module_code' => 'Colissimo']);
|
|
}
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Redirect to the configuration page
|
|
*/
|
|
protected function redirectToConfigurationPage()
|
|
{
|
|
return RedirectResponse::create(URL::getInstance()->absoluteUrl('/admin/module/Colissimo'));
|
|
}
|
|
}
|