Files
2019-11-21 12:25:31 +01:00

57 lines
2.1 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 HookAnalytics\Controller;
use Symfony\Component\HttpFoundation\JsonResponse;
use Thelia\Controller\Admin\BaseAdminController;
use Thelia\Core\Security\AccessManager;
use Thelia\Core\Security\Resource\AdminResources;
use Thelia\Log\Tlog;
use Thelia\Model\ConfigQuery;
/**
* Class Configuration
* @package HookSocial\Controller
* @author Julien Chanséaume <jchanseaume@openstudio.fr>
*/
class Configuration extends BaseAdminController {
public function saveAction()
{
if (null !== $response = $this->checkAuth(array(AdminResources::MODULE), array('hookanalytics'), AccessManager::UPDATE)) {
return $response;
}
$form = new \HookAnalytics\Form\Configuration($this->getRequest());
$resp = array(
"error" => 0,
"message" => ""
);
$response=null;
try {
$vform = $this->validateForm($form);
$data = $vform->getData();
ConfigQuery::write("hookanalytics_trackingcode", $data["trackingcode"], false, true);
} catch (\Exception $e) {
$resp["error"] = 1;
$resp["message"] = $e->getMessage();
}
return JsonResponse::create($resp);
}
}