122 lines
4.4 KiB
PHP
122 lines
4.4 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\Country\CountryCreateEvent;
|
|
use Thelia\Core\Event\Country\CountryDeleteEvent;
|
|
use Thelia\Core\Event\Country\CountryToggleDefaultEvent;
|
|
use Thelia\Core\Event\Country\CountryToggleVisibilityEvent;
|
|
use Thelia\Core\Event\Country\CountryUpdateEvent;
|
|
use Thelia\Core\Event\TheliaEvents;
|
|
use Thelia\Model\Country as CountryModel;
|
|
use Thelia\Model\CountryQuery;
|
|
|
|
/**
|
|
* Class Country
|
|
* @package Thelia\Action
|
|
* @author Manuel Raynaud <manu@raynaud.io>
|
|
*/
|
|
class Country extends BaseAction implements EventSubscriberInterface
|
|
{
|
|
public function create(CountryCreateEvent $event)
|
|
{
|
|
$country = new CountryModel();
|
|
|
|
$country
|
|
->setVisible($event->isVisible())
|
|
->setIsocode($event->getIsocode())
|
|
->setIsoalpha2($event->getIsoAlpha2())
|
|
->setIsoalpha3($event->getIsoAlpha3())
|
|
->setHasStates($event->isHasStates())
|
|
->setLocale($event->getLocale())
|
|
->setTitle($event->getTitle())
|
|
->save();
|
|
|
|
$event->setCountry($country);
|
|
}
|
|
|
|
public function update(CountryUpdateEvent $event)
|
|
{
|
|
if (null !== $country = CountryQuery::create()->findPk($event->getCountryId())) {
|
|
$country
|
|
->setVisible($event->isVisible())
|
|
->setIsocode($event->getIsocode())
|
|
->setIsoalpha2($event->getIsoAlpha2())
|
|
->setIsoalpha3($event->getIsoAlpha3())
|
|
->setHasStates($event->isHasStates())
|
|
->setNeedZipCode($event->isNeedZipCode())
|
|
->setZipCodeFormat($event->getZipCodeFormat())
|
|
->setLocale($event->getLocale())
|
|
->setTitle($event->getTitle())
|
|
->setChapo($event->getChapo())
|
|
->setDescription($event->getDescription())
|
|
->save();
|
|
|
|
$event->setCountry($country);
|
|
}
|
|
}
|
|
|
|
public function delete(CountryDeleteEvent $event)
|
|
{
|
|
if (null !== $country = CountryQuery::create()->findPk($event->getCountryId())) {
|
|
$country->delete();
|
|
|
|
$event->setCountry($country);
|
|
}
|
|
}
|
|
|
|
public function toggleDefault(CountryToggleDefaultEvent $event)
|
|
{
|
|
if (null !== $country = CountryQuery::create()->findPk($event->getCountryId())) {
|
|
$country->toggleDefault();
|
|
|
|
$event->setCountry($country);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Toggle Country visibility
|
|
*
|
|
* @param CountryToggleVisibilityEvent $event
|
|
* @param $eventName
|
|
* @param EventDispatcherInterface $dispatcher
|
|
*/
|
|
public function toggleVisibility(CountryToggleVisibilityEvent $event, $eventName, EventDispatcherInterface $dispatcher)
|
|
{
|
|
$country = $event->getCountry();
|
|
|
|
$country
|
|
->setDispatcher($dispatcher)
|
|
->setVisible(!$country->getVisible())
|
|
->save();
|
|
|
|
$event->setCountry($country);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public static function getSubscribedEvents()
|
|
{
|
|
return array(
|
|
TheliaEvents::COUNTRY_CREATE => array('create', 128),
|
|
TheliaEvents::COUNTRY_UPDATE => array('update', 128),
|
|
TheliaEvents::COUNTRY_DELETE => array('delete', 128),
|
|
TheliaEvents::COUNTRY_TOGGLE_DEFAULT => array('toggleDefault', 128),
|
|
TheliaEvents::COUNTRY_TOGGLE_VISIBILITY => array('toggleVisibility', 128)
|
|
);
|
|
}
|
|
}
|