refactor currency events
This commit is contained in:
@@ -30,9 +30,9 @@ use Thelia\Model\Currency as CurrencyModel;
|
|||||||
|
|
||||||
use Thelia\Core\Event\TheliaEvents;
|
use Thelia\Core\Event\TheliaEvents;
|
||||||
|
|
||||||
use Thelia\Core\Event\CurrencyUpdateEvent;
|
use Thelia\Core\Event\Currency\CurrencyUpdateEvent;
|
||||||
use Thelia\Core\Event\CurrencyCreateEvent;
|
use Thelia\Core\Event\Currency\CurrencyCreateEvent;
|
||||||
use Thelia\Core\Event\CurrencyDeleteEvent;
|
use Thelia\Core\Event\Currency\CurrencyDeleteEvent;
|
||||||
use Thelia\Model\ConfigQuery;
|
use Thelia\Model\ConfigQuery;
|
||||||
use Thelia\Core\Event\UpdatePositionEvent;
|
use Thelia\Core\Event\UpdatePositionEvent;
|
||||||
|
|
||||||
@@ -41,7 +41,7 @@ class Currency extends BaseAction implements EventSubscriberInterface
|
|||||||
/**
|
/**
|
||||||
* Create a new currencyuration entry
|
* Create a new currencyuration entry
|
||||||
*
|
*
|
||||||
* @param CurrencyCreateEvent $event
|
* @param \Thelia\Core\Event\Currency\CurrencyCreateEvent $event
|
||||||
*/
|
*/
|
||||||
public function create(CurrencyCreateEvent $event)
|
public function create(CurrencyCreateEvent $event)
|
||||||
{
|
{
|
||||||
@@ -65,7 +65,7 @@ class Currency extends BaseAction implements EventSubscriberInterface
|
|||||||
/**
|
/**
|
||||||
* Change a currency
|
* Change a currency
|
||||||
*
|
*
|
||||||
* @param CurrencyUpdateEvent $event
|
* @param \Thelia\Core\Event\Currency\CurrencyUpdateEvent $event
|
||||||
*/
|
*/
|
||||||
public function update(CurrencyUpdateEvent $event)
|
public function update(CurrencyUpdateEvent $event)
|
||||||
{
|
{
|
||||||
@@ -118,7 +118,7 @@ class Currency extends BaseAction implements EventSubscriberInterface
|
|||||||
/**
|
/**
|
||||||
* Delete a currencyuration entry
|
* Delete a currencyuration entry
|
||||||
*
|
*
|
||||||
* @param CurrencyDeleteEvent $event
|
* @param \Thelia\Core\Event\Currency\CurrencyDeleteEvent $event
|
||||||
*/
|
*/
|
||||||
public function delete(CurrencyDeleteEvent $event)
|
public function delete(CurrencyDeleteEvent $event)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -23,10 +23,10 @@
|
|||||||
|
|
||||||
namespace Thelia\Controller\Admin;
|
namespace Thelia\Controller\Admin;
|
||||||
|
|
||||||
use Thelia\Core\Event\CurrencyDeleteEvent;
|
use Thelia\Core\Event\Currency\CurrencyDeleteEvent;
|
||||||
use Thelia\Core\Event\TheliaEvents;
|
use Thelia\Core\Event\TheliaEvents;
|
||||||
use Thelia\Core\Event\CurrencyUpdateEvent;
|
use Thelia\Core\Event\Currency\CurrencyUpdateEvent;
|
||||||
use Thelia\Core\Event\CurrencyCreateEvent;
|
use Thelia\Core\Event\Currency\CurrencyCreateEvent;
|
||||||
use Thelia\Model\CurrencyQuery;
|
use Thelia\Model\CurrencyQuery;
|
||||||
use Thelia\Form\CurrencyModificationForm;
|
use Thelia\Form\CurrencyModificationForm;
|
||||||
use Thelia\Form\CurrencyCreationForm;
|
use Thelia\Form\CurrencyCreationForm;
|
||||||
|
|||||||
@@ -21,7 +21,9 @@
|
|||||||
/* */
|
/* */
|
||||||
/*************************************************************************************/
|
/*************************************************************************************/
|
||||||
|
|
||||||
namespace Thelia\Core\Event;
|
namespace Thelia\Core\Event\Currency;
|
||||||
|
|
||||||
|
use Thelia\Core\Event\Currency\CurrencyEvent;
|
||||||
|
|
||||||
class CurrencyCreateEvent extends CurrencyEvent
|
class CurrencyCreateEvent extends CurrencyEvent
|
||||||
{
|
{
|
||||||
@@ -21,7 +21,9 @@
|
|||||||
/* */
|
/* */
|
||||||
/*************************************************************************************/
|
/*************************************************************************************/
|
||||||
|
|
||||||
namespace Thelia\Core\Event;
|
namespace Thelia\Core\Event\Currency;
|
||||||
|
|
||||||
|
use Thelia\Core\Event\Currency\CurrencyEvent;
|
||||||
|
|
||||||
class CurrencyDeleteEvent extends CurrencyEvent
|
class CurrencyDeleteEvent extends CurrencyEvent
|
||||||
{
|
{
|
||||||
@@ -21,7 +21,8 @@
|
|||||||
/* */
|
/* */
|
||||||
/*************************************************************************************/
|
/*************************************************************************************/
|
||||||
|
|
||||||
namespace Thelia\Core\Event;
|
namespace Thelia\Core\Event\Currency;
|
||||||
|
use Thelia\Core\Event\ActionEvent;
|
||||||
use Thelia\Model\Currency;
|
use Thelia\Model\Currency;
|
||||||
|
|
||||||
class CurrencyEvent extends ActionEvent
|
class CurrencyEvent extends ActionEvent
|
||||||
@@ -21,7 +21,9 @@
|
|||||||
/* */
|
/* */
|
||||||
/*************************************************************************************/
|
/*************************************************************************************/
|
||||||
|
|
||||||
namespace Thelia\Core\Event;
|
namespace Thelia\Core\Event\Currency;
|
||||||
|
|
||||||
|
use Thelia\Core\Event\Currency\CurrencyCreateEvent;
|
||||||
|
|
||||||
class CurrencyUpdateEvent extends CurrencyCreateEvent
|
class CurrencyUpdateEvent extends CurrencyCreateEvent
|
||||||
{
|
{
|
||||||
@@ -32,7 +32,7 @@ use Symfony\Component\DependencyInjection\ContainerInterface;
|
|||||||
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
|
||||||
use Symfony\Component\HttpFoundation\Session;
|
use Symfony\Component\HttpFoundation\Session;
|
||||||
|
|
||||||
use Thelia\Core\Event\CurrencyEvent;
|
use Thelia\Core\Event\Currency\CurrencyEvent;
|
||||||
use Thelia\Core\Event\TheliaEvents;
|
use Thelia\Core\Event\TheliaEvents;
|
||||||
use Thelia\Model;
|
use Thelia\Model;
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ use Propel\Runtime\Exception\PropelException;
|
|||||||
use Thelia\Model\Base\Currency as BaseCurrency;
|
use Thelia\Model\Base\Currency as BaseCurrency;
|
||||||
use Thelia\Core\Event\TheliaEvents;
|
use Thelia\Core\Event\TheliaEvents;
|
||||||
use Propel\Runtime\Connection\ConnectionInterface;
|
use Propel\Runtime\Connection\ConnectionInterface;
|
||||||
use Thelia\Core\Event\CurrencyEvent;
|
use Thelia\Core\Event\Currency\CurrencyEvent;
|
||||||
|
|
||||||
class Currency extends BaseCurrency {
|
class Currency extends BaseCurrency {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user