96 lines
3.1 KiB
PHP
96 lines
3.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 Thelia\Action;
|
|
|
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
|
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
|
use Thelia\Core\Event\Tax\TaxEvent;
|
|
use Thelia\Core\Event\TheliaEvents;
|
|
use Thelia\Model\Tax as TaxModel;
|
|
use Thelia\Model\TaxQuery;
|
|
|
|
class Tax extends BaseAction implements EventSubscriberInterface
|
|
{
|
|
/**
|
|
* @param TaxEvent $event
|
|
* @param $eventName
|
|
* @param EventDispatcherInterface $dispatcher
|
|
*/
|
|
public function create(TaxEvent $event, $eventName, EventDispatcherInterface $dispatcher)
|
|
{
|
|
$tax = new TaxModel();
|
|
|
|
$tax
|
|
->setDispatcher($dispatcher)
|
|
->setRequirements($event->getRequirements())
|
|
->setType($event->getType())
|
|
->setLocale($event->getLocale())
|
|
->setTitle($event->getTitle())
|
|
->setDescription($event->getDescription())
|
|
;
|
|
|
|
$tax->save();
|
|
|
|
$event->setTax($tax);
|
|
}
|
|
|
|
/**
|
|
* @param TaxEvent $event
|
|
* @param $eventName
|
|
* @param EventDispatcherInterface $dispatcher
|
|
*/
|
|
public function update(TaxEvent $event, $eventName, EventDispatcherInterface $dispatcher)
|
|
{
|
|
if (null !== $tax = TaxQuery::create()->findPk($event->getId())) {
|
|
$tax
|
|
->setDispatcher($dispatcher)
|
|
->setRequirements($event->getRequirements())
|
|
->setType($event->getType())
|
|
->setLocale($event->getLocale())
|
|
->setTitle($event->getTitle())
|
|
->setDescription($event->getDescription())
|
|
;
|
|
|
|
$tax->save();
|
|
|
|
$event->setTax($tax);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param TaxEvent $event
|
|
*/
|
|
public function delete(TaxEvent $event)
|
|
{
|
|
if (null !== $tax = TaxQuery::create()->findPk($event->getId())) {
|
|
$tax
|
|
->delete()
|
|
;
|
|
|
|
$event->setTax($tax);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public static function getSubscribedEvents()
|
|
{
|
|
return array(
|
|
TheliaEvents::TAX_CREATE => array("create", 128),
|
|
TheliaEvents::TAX_UPDATE => array("update", 128),
|
|
TheliaEvents::TAX_DELETE => array("delete", 128),
|
|
);
|
|
}
|
|
}
|