. */ /* */ /*************************************************************************************/ namespace Thelia\Action; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Thelia\Model\AttributeQuery; use Thelia\Model\Attribute as AttributeModel; use Thelia\Core\Event\TheliaEvents; use Thelia\Core\Event\AttributeUpdateEvent; use Thelia\Core\Event\AttributeCreateEvent; use Thelia\Core\Event\AttributeDeleteEvent; use Thelia\Model\ConfigQuery; use Thelia\Model\AttributeAv; use Thelia\Model\AttributeAvQuery; use Thelia\Core\Event\UpdatePositionEvent; class Attribute extends BaseAction implements EventSubscriberInterface { /** * Create a new attribute entry * * @param AttributeCreateEvent $event */ public function create(AttributeCreateEvent $event) { $attribute = new AttributeModel(); $attribute ->setDispatcher($this->getDispatcher()) ->setLocale($event->getLocale()) ->setTitle($event->getTitle()) ->save() ; $event->setAttribute($attribute); // Add atribute to all product templates if required if ($event->getAddToAllTemplates() != 0) { // TODO: add to all product template } } /** * Change a product attribute * * @param AttributeUpdateEvent $event */ public function update(AttributeUpdateEvent $event) { $search = AttributeQuery::create(); if (null !== $attribute = AttributeQuery::create()->findPk($event->getAttributeId())) { $attribute ->setDispatcher($this->getDispatcher()) ->setLocale($event->getLocale()) ->setTitle($event->getTitle()) ->setDescription($event->getDescription()) ->setChapo($event->getChapo()) ->setPostscriptum($event->getPostscriptum()) ->save(); $event->setAttribute($attribute); } } /** * Delete a product attribute entry * * @param AttributeDeleteEvent $event */ public function delete(AttributeDeleteEvent $event) { if (null !== ($attribute = AttributeQuery::create()->findPk($event->getAttributeId()))) { $attribute ->setDispatcher($this->getDispatcher()) ->delete() ; $event->setAttribute($attribute); } } /** * Changes position, selecting absolute ou relative change. * * @param CategoryChangePositionEvent $event */ public function updatePosition(UpdatePositionEvent $event) { if (null !== $attribute = AttributeQuery::create()->findPk($event->getObjectId())) { $attribute->setDispatcher($this->getDispatcher()); $mode = $event->getMode(); if ($mode == UpdatePositionEvent::POSITION_ABSOLUTE) return $attribute->changeAbsolutePosition($event->getPosition()); else if ($mode == UpdatePositionEvent::POSITION_UP) return $attribute->movePositionUp(); else if ($mode == UpdatePositionEvent::POSITION_DOWN) return $attribute->movePositionDown(); } } /** * {@inheritDoc} */ public static function getSubscribedEvents() { return array( TheliaEvents::ATTRIBUTE_CREATE => array("create", 128), TheliaEvents::ATTRIBUTE_UPDATE => array("update", 128), TheliaEvents::ATTRIBUTE_DELETE => array("delete", 128), TheliaEvents::ATTRIBUTE_UPDATE_POSITION => array("updatePosition", 128), ); } }