Initial commit
This commit is contained in:
57
local/modules/HookAnalytics/Controller/Configuration.php
Normal file
57
local/modules/HookAnalytics/Controller/Configuration.php
Normal file
@@ -0,0 +1,57 @@
|
||||
<?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);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user