change action implementation

This commit is contained in:
Manuel Raynaud
2013-04-16 14:41:03 +02:00
parent 8db01fa856
commit e0aeb8a643
6 changed files with 105 additions and 114 deletions

View File

@@ -1,59 +0,0 @@
<?php
/*************************************************************************************/
/* */
/* Thelia */
/* */
/* Copyright (c) OpenStudio */
/* email : info@thelia.net */
/* web : http://www.thelia.net */
/* */
/* This program is free software; you can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 3 of the License */
/* */
/* This program is distributed in the hope that it will be useful, */
/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the */
/* GNU General Public License for more details. */
/* */
/* You should have received a copy of the GNU General Public License */
/* along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* */
/*************************************************************************************/
namespace Thelia\Action;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
/**
*
*
* @author Manuel Raynaud <mraynaud@openstudio.fr>
*/
abstract class BaseAction
{
/**
*
* @var \Symfony\Component\EventDispatcher\EventDispatcherInterface
*/
protected $dispatcher;
/**
*
* @param \Symfony\Component\EventDispatcher\EventDispatcherInterface $dispatcher
*/
public function __construct(EventDispatcherInterface $dispatcher)
{
$this->dispatcher = $dispatcher;
}
/**
*
* @return \Symfony\Component\EventDispatcher\EventDispatcherInterface
*/
public function getDispatcher()
{
return $this->dispatcher;
}
}

View File

@@ -24,17 +24,19 @@
namespace Thelia\Action;
use Symfony\Component\HttpFoundation\Request;
use Thelia\Action\BaseAction;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Thelia\Core\Event\ActionEvent;
class Cart extends BaseAction
class Cart implements EventSubscriberInterface
{
/**
*
* add an article to cart
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param \Thelia\Core\Event\ActionEvent $event
*/
public function addCart(Request $request)
public function addArticle(ActionEvent $event)
{
}
@@ -43,9 +45,9 @@ class Cart extends BaseAction
*
* Delete specify article present into cart
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param \Thelia\Core\Event\ActionEvent $event
*/
public function deleteArticle(Request $request)
public function deleteArticle(ActionEvent $event)
{
}
@@ -54,10 +56,39 @@ class Cart extends BaseAction
*
* Modify article's quantity
*
* @param \Symfony\Component\HttpFoundation\Request $request
* @param \Thelia\Core\Event\ActionEvent $event
*/
public function modifyArticle(Request $request)
public function modifyArticle(ActionEvent $event)
{
}
/**
* Returns an array of event names this subscriber wants to listen to.
*
* The array keys are event names and the value can be:
*
* * The method name to call (priority defaults to 0)
* * An array composed of the method name to call and the priority
* * An array of arrays composed of the method names to call and respective
* priorities, or 0 if unset
*
* For instance:
*
* * array('eventName' => 'methodName')
* * array('eventName' => array('methodName', $priority))
* * array('eventName' => array(array('methodName1', $priority), array('methodName2'))
*
* @return array The event names to listen to
*
* @api
*/
public static function getSubscribedEvents()
{
return array(
"action.addArticle" => array("addArticle", 128),
"action.deleteArticle" => array("deleteArticle", 128),
"action.modifyArticle" => array("modifyArticle", 128),
);
}
}

View File

@@ -23,23 +23,54 @@
namespace Thelia\Action;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\Request;
use Thelia\Core\Event\ActionEvent;
class Customer
class Customer implements EventSubscriberInterface
{
public function create(Request $request)
public function create(ActionEvent $event)
{
}
public function modify(Request $request)
public function modify(ActionEvent $event)
{
}
public function modifyPassword(Request $request)
public function modifyPassword(ActionEvent $event)
{
}
/**
* Returns an array of event names this subscriber wants to listen to.
*
* The array keys are event names and the value can be:
*
* * The method name to call (priority defaults to 0)
* * An array composed of the method name to call and the priority
* * An array of arrays composed of the method names to call and respective
* priorities, or 0 if unset
*
* For instance:
*
* * array('eventName' => 'methodName')
* * array('eventName' => array('methodName', $priority))
* * array('eventName' => array(array('methodName1', $priority), array('methodName2'))
*
* @return array The event names to listen to
*
* @api
*/
public static function getSubscribedEvents()
{
return array(
"action.createCustomer" => array("create", 128),
"action.modifyCustomer" => array("modify", 128)
);
}
}