SlideShare a Scribd company logo
1 of 28
Download to read offline
E-Commerce solution based on Symfony 2 components 
By Manuel Raynaud / @manuraynaud 
Clemont'ech APIHour #9 28/05/2014
Internationalisation 
Interopérabilité 
Mise en place de bonnes pratiques 
Nouvelles fonctionnalités
BACKOFFICE 
php 5.4 
sf2 components 
Propel
SF2 COMPONENTS 
HttpKernel 
HttpFoundation 
EventDispatcher 
DependencyInjection 
Form
FRONTOFFICE 
HTML 5 
BootStrap 3 + less
ÉTENDRE 
THELIA
STRUCTURE D'UN MODULE 
MyModule 
MyModule.php 
Config 
config.xml 
module.xml 
routing.xml 
schema.xml 
Controller 
MyModuleAdminController.php 
I18n 
fr_FR.php 
en_US.php 
Model 
Base 
Map 
MyModule.php 
MyModuleQuery.php 
Listeners 
CartListener.php 
OrderListener.php 
Loop 
MyModuleLoop.php 
templates 
...
LISTENERS
DISPATCH D'UN EVENT
RÉCUPÉRER LE DISPATCHER 
//depuis le container 
$eventDispatcher = $container->get('event_dispatcher'); 
//depuis un event 
$eventDispatcher = $event->getDispatcher();
CRÉER UN EVENT 
1 event = 1 classe de données
<?php 
namespace TheliaCoreEvent; 
use SymfonyComponentEventDispatcherEvent; 
class Cart extends Event 
{ 
protected $productId; 
protected $quantity; 
public function __construct($productId, $quantity) 
{ 
$this->productId = $productId; 
$this->quantity = $quantity; 
} 
public function getProductId() 
{ 
return $this->productId; 
} 
public function getQuantity() 
{ 
return $this->quantity; 
} 
}
use TheliaCoreEventCart; 
use TheliaCoreEventTheliaEvents; 
// 
$eventDispatcher = $container->get('event_dispatcher'); 
$cartEvent = new Cart(1, 3); 
$eventDispatcher->dispatch(TheliaEvent::CART_ADD, $cartEvent);
LISTE DES EVENTS THELIA 
Documentation -> dev -> event 
TheliaCoreEventTheliaEvents
CRÉER UN LISTENER 
<?php 
namespace MyModuleListener; 
use TheliaCoreEventTheliaEvents; 
use TheliaCoreEventCartEvent; 
Class CartListener implements EventSubscriberInterface 
{ 
public static function getSubscribedEvents() 
{ 
return [ 
TheliaEvents::CART_ADD => ['addItem', 100] 
]; 
} 
public function addItem(CartEvent $event) 
{ 
$item = $event->getCart()->getLast(); 
$item->addQuantity(rand(1,5)); 
$item->save(); 
} 
}
DÉCLARER LE LISTENER 
<service id="MyModule.cart.listener" class="MyModuleListenerCart"> 
<tag name="kernel.event_subscriber"/> 
</service>
AVANTAGES 
Jouer sur la priorité 
Possibilité de surcharger totalement Thelia
INCONVÉNIENT 
Rien ne vous assure que votre listener sera exécuté
ROUTING
Il suffit de créer un fichier routing.xml dans le répertoire Config 
<!--?xml version="1.0" encoding="UTF-8" ?--> 
<routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-<route id="mumodule.id" path="/foo"> 
<default key="_controller"> 
MyModuleControllerMyModuleAdminController::fooAction 
</default> 
</route> 
</routes>
Config personnalisée 
<service id="router.front" class="%router.class%"> 
<argument type="service" id="router.module.xmlLoader"> 
<argument>MyModule/Config/custom_routing.xml</argument> 
<argument type="collection"> 
<argument key="cache_dir">%kernel.cache_dir%</argument> 
<argument key="debug">%kernel.debug%</argument> 
</argument> 
<argument type="service" id="request.context"> 
<tag name="router.register" priority="256"> 
</tag></argument></argument></service>
NEXT ?
Hooks 
API 
Marketplace
ONE MORE 
THING !
MERCI ! 
http://doc.thelia.net 
https://github.com/thelia 
@theliaecommerce

More Related Content

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

intro aux modules Thelia 2

  • 1. E-Commerce solution based on Symfony 2 components By Manuel Raynaud / @manuraynaud Clemont'ech APIHour #9 28/05/2014
  • 2.
  • 3. Internationalisation Interopérabilité Mise en place de bonnes pratiques Nouvelles fonctionnalités
  • 4. BACKOFFICE php 5.4 sf2 components Propel
  • 5. SF2 COMPONENTS HttpKernel HttpFoundation EventDispatcher DependencyInjection Form
  • 6. FRONTOFFICE HTML 5 BootStrap 3 + less
  • 8. STRUCTURE D'UN MODULE MyModule MyModule.php Config config.xml module.xml routing.xml schema.xml Controller MyModuleAdminController.php I18n fr_FR.php en_US.php Model Base Map MyModule.php MyModuleQuery.php Listeners CartListener.php OrderListener.php Loop MyModuleLoop.php templates ...
  • 10.
  • 12. RÉCUPÉRER LE DISPATCHER //depuis le container $eventDispatcher = $container->get('event_dispatcher'); //depuis un event $eventDispatcher = $event->getDispatcher();
  • 13. CRÉER UN EVENT 1 event = 1 classe de données
  • 14. <?php namespace TheliaCoreEvent; use SymfonyComponentEventDispatcherEvent; class Cart extends Event { protected $productId; protected $quantity; public function __construct($productId, $quantity) { $this->productId = $productId; $this->quantity = $quantity; } public function getProductId() { return $this->productId; } public function getQuantity() { return $this->quantity; } }
  • 15. use TheliaCoreEventCart; use TheliaCoreEventTheliaEvents; // $eventDispatcher = $container->get('event_dispatcher'); $cartEvent = new Cart(1, 3); $eventDispatcher->dispatch(TheliaEvent::CART_ADD, $cartEvent);
  • 16. LISTE DES EVENTS THELIA Documentation -> dev -> event TheliaCoreEventTheliaEvents
  • 17. CRÉER UN LISTENER <?php namespace MyModuleListener; use TheliaCoreEventTheliaEvents; use TheliaCoreEventCartEvent; Class CartListener implements EventSubscriberInterface { public static function getSubscribedEvents() { return [ TheliaEvents::CART_ADD => ['addItem', 100] ]; } public function addItem(CartEvent $event) { $item = $event->getCart()->getLast(); $item->addQuantity(rand(1,5)); $item->save(); } }
  • 18. DÉCLARER LE LISTENER <service id="MyModule.cart.listener" class="MyModuleListenerCart"> <tag name="kernel.event_subscriber"/> </service>
  • 19. AVANTAGES Jouer sur la priorité Possibilité de surcharger totalement Thelia
  • 20. INCONVÉNIENT Rien ne vous assure que votre listener sera exécuté
  • 22. Il suffit de créer un fichier routing.xml dans le répertoire Config <!--?xml version="1.0" encoding="UTF-8" ?--> <routes xmlns="http://symfony.com/schema/routing" xmlns:xsi="http://www.w3.org/2001/XMLSchema-<route id="mumodule.id" path="/foo"> <default key="_controller"> MyModuleControllerMyModuleAdminController::fooAction </default> </route> </routes>
  • 23. Config personnalisée <service id="router.front" class="%router.class%"> <argument type="service" id="router.module.xmlLoader"> <argument>MyModule/Config/custom_routing.xml</argument> <argument type="collection"> <argument key="cache_dir">%kernel.cache_dir%</argument> <argument key="debug">%kernel.debug%</argument> </argument> <argument type="service" id="request.context"> <tag name="router.register" priority="256"> </tag></argument></argument></service>
  • 27.
  • 28. MERCI ! http://doc.thelia.net https://github.com/thelia @theliaecommerce