SlideShare a Scribd company logo
1 of 65
Download to read offline
DRUPAL COMMERCE 2.X
DRUPAL CAMP LONDON 2015
Presented by David Kitchen / @dwkitchen
INTRODUCTIONS
DAVID KITCHEN
Technical Lead for Commerce Guys UK
Tax specialist and Commerce Contributor
DRUPAL COMMERCE 2.X CO-MAINTAINERS
Bojan Zivanovic (bojanz)
and Ryan Szrama (rszrama)
Our vision is for Drupal Commerce to be the number one
open source e-commerce platform in the world...
Powering truly flexible e-commerce.
DRUPAL COMMERCE 1.X
A brief history.
BUILT FROM SCRATCH ON DRUPAL 7
MINIMALISTIC AND FLEXIBLE
USES VIEWS FOR ALL LISTINGS
USES RULES FOR BUSINESS LOGIC
RELIES ON "ESSENTIAL CONTRIBS" AND DISTRIBUTIONS TO
COMPLETE THE EXPERIENCE
WE'RE DOING SOMETHING RIGHT...
SYMFONY PHP LIBRARIES
WE* STARTED WITH RESEARCH
*Led by Bojan Zivanovic.
Define the deficiencies in our own software
Existing */money libraries
Sonata / Sylius e-commerce bundles
Non-Symfony PHP applications
Non-PHP applications
IDENTIFYING OUR WEAKNESSES
Age old tax management issues
Incomplete price management API
Incomplete currency formatting rules
Address implementation stretched to the limit
Limited ability to collaborate outside of Drupal
PROPOSING STANDALONE SOLUTIONS
Internationalization (esp. currency formatting)
Address formatting / validation
Territory grouping (to support taxing)
Tax rate management (at least for VAT)
Price calculation and manipulation
Not just interfaces / classes but unprecedented data.also
Minimal dependencies.
Simple APIs with clear documentation and examples.
Full test coverage.
Reusable by any PHP based e-commerce application.
INTL
Number Formatter, inspired by intl.
Currencies
Countries
Languages
COMING SOON
Date Formatting
Drupal Commerce blog.
CURRENCY HANDLING
$ ¢ £ p ¥ ₤ ₧ € ₹ ₩ ₴ ₯ ₮ ₲ ₳ ₵ ₭ ₪ ₫
CURRENCY FORMATTING
€12,345.99
12 345,99 €
12.345,99 €
۹۹۹٫۹۹ .‫ﺩ.ﺇ‬
PRICING
A price is a value object. Each operation (add, subtract,
multiply, divide, round) produces a new price instance. All
amounts are passed as strings, and manipulated using
bcmath.
CREATING PRICES
use CommerceGuysIntlCurrencyCurrencyRepository;
use CommerceGuysPricingPrice;
$currencyRepository = new CurrencyRepository;
$currency = $currencyRepository­>get('EUR');
$firstPrice  = new Price('99.99', $currency);
$secondPrice = new Price('100', $currency);
$thirdPrice  = new Price('20.307', $currency);
                        
PRICE OPERATIONS
// Every operation produces a new Price instance.
$total = $firstPrice
­>add($secondPrice)
­>subtract($thirdPrice)
­>multiply('4')
­>divide('2');
echo $total; // 359.366  EUR
echo $total­>round(); // 359.37  EUR
echo $total­>round(Price::ROUND_HALF_UP, 1); // 359.4 EUR
echo $total­>greaterThan($firstPrice); // true
                        
CURRENCY CONVERSION
use CommerceGuysIntlCurrencyCurrencyRepository;
use CommerceGuysPricingPrice;
$currencyRepository = new CurrencyRepository;
$eur = $currencyRepository­>get('EUR');
$usd = $currencyRepository­>get('USD');
// Use an external library to get an actual exchange rate.
$rate = 1;
$eurPrice = new Price('100', $eur);
$usdPrice = $eurPrice­>convert($usd, $rate);
echo $usdPrice;
                        
CURRENCY FORMATTING
use CommerceGuysIntlCurrencyCurrencyRepository;
use CommerceGuysIntlNumberFormatNumberFormatRepository;
use CommerceGuysIntlFormatterNumberFormatter;
use CommerceGuysPricingPrice;
$currencyRepository = new CurrencyRepository;
$currency = $currencyRepository­>get('USD');
$price = new Price('99.99', $currency);
$numberFormatRepository = new NumberFormatRepository;
$numberFormat = $numberFormatRepository­>get('en­US');
$currencyFormatter = new NumberFormatter($numberFormat, NumberFormatter::CURRENCY
echo $currencyFormatter­>formatCurrency($price­>getAmount(), $price­>getCurrency(
                        
ADDRESSING
Address formats for 200 countries
Subdivisions (administrative areas, localities, dependent
localities) for 40 countries
Subdivision translations for all of the parent country's (i.e
Canada, Switzerland) official languages.
Validation (via Symfony Validator)
Form generation (via Symfony Form)
Postal formatting
Featured on the Drupal Commerce blog.
ADDRESS DATA
use CommerceGuysAddressingRepositoryAddressFormatRepository;
use CommerceGuysAddressingRepositorySubdivisionRepository;
$addressFormatRepository = new AddressFormatRepository();
$subdivisionRepository = new SubdivisionRepository();
// Get the address format for Canada.
$addressFormat = $addressFormatRepository­>get('CA');
// Get the subdivisions for Canada, in French.
$states = $subdivisionRepository­>getAll('CA', 0, 'fr');
foreach ($states as $state) {
    echo $state­>getName();
}
                        
WHAT FIELDS?
SOMEWHERE ELSE
ADDRESS FORMAT
Which fields are used, and in which order
Which fields are required
Which fields need to be uppercased
Field labels
Regular expression for validating postal codes
ADDRESS FORMATTING
use CommerceGuysAddressingFormatterPostalFormatter;
use CommerceGuysAddressingProviderDataProvider;
$dataProvider = new DataProvider();
$formatter = new PostalFormatter($dataProvider);
// Format an address for sending from Switzerland, in French.
// If the address destination is not Switzerland, the country name will be
// appended in French, uppercase.
echo $formatter­>format($address, 'CH', 'fr');
                            
ZONE
Zones are territorial groupings mostly used for shipping or
tax purposes. For example, a set of shipping rates associated
with a zone where the rates become available only if the
customer's address matches the zone.
A zone can match other zones, countries, subdivisions
(states/provinces/municipalities), postal codes. Postal codes
can also be expressed using ranges or regular expressions.
Create the German VAT zone
use CommerceGuysAddressingModelAddress;
use CommerceGuysZoneModelZone;
use CommerceGuysZoneModelZoneMemberCountry;
$zone = new Zone();
$zone­>setId('german_vat');
$zone­>setName('German VAT');
$zone­>setScope('tax');
                        
Add Germany to the zone,
$germanyZoneMember = new ZoneMemberCountry();
$germanyZoneMember­>setCountryCode('DE');
$zone­>addMember($germanyZoneMember);
                        
add the 4 Austrian postal codes that are in Germany for VAT.
$austriaZoneMember = new ZoneMemberCountry();
$austriaZoneMember­>setCountryCode('AT');
$austriaZoneMember­>setIncludedPostalCodes('6691, 6991:6993');
$zone­>addMember($austriaZoneMember);
                        
Initialising a zone matcher.
use CommerceGuysAddressingModelAddress;
use CommerceGuysZoneMatcherZoneMatcher;
use CommerceGuysZoneRepositoryZoneRepository;
$repository = new ZoneRepository('resources/zone');
$matcher = new ZoneMatcher($repository);
                        
Create an address.
$austrianAddress = new Address();
$austrianAddress­>setCountryCode('AT');
$austrianAddress­>setPostalCode('6692');
                        
Get the matching tax zones.
$zones = $matcher­>matchAll($austrianAddress, 'tax');
                        
Is in Germany for VAT.
TAX
Smart data model designed for fluctuating tax rate
amounts ("19% -> 21% on January 1st").
Predefined tax rates and zones for EU countries, Iceland,
Norway, South Africa and Switzerland. More to come.
Tax resolvers with logic for all major use cases.
EU TAX RESOLVER
use CommerceGuysTaxRepositoryTaxTypeRepository;
use CommerceGuysTaxResolverEngineTaxTypeResolverEngine;
use CommerceGuysTaxResolverEngineTaxRateResolverEngine;
use CommerceGuysTaxResolverTaxTypeEuTaxTypeResolver;
use CommerceGuysTaxResolverTaxRateDefaultTaxRateResolver;
use CommerceGuysTaxResolverTaxResolver;
$taxTypeRepository = new TaxTypeRepository();
$taxTypeResolverEngine = new TaxTypeResolverEngine();
$taxTypeResolverEngine­>add(new EuTaxTypeResolver($taxTypeRepository));
$taxRateResolverEngine = new TaxRateResolverEngine();
$taxRateResolverEngine­>add(new DefaultTaxRateResolver());
$resolver = new TaxResolver($taxTypeResolverEngine, $taxRateResolverEngine);
                        
CALCULATES THE VAT RATE BASED ON
Goods or Services
Type of service, digital, education
B2C or B2B
Supplier location
Customer Location
FULL DATA INC. HISTORIC RATES
{
"name": "British VAT",
"zone": "gb_vat",
"tag": "EU",
"rates": [
    {
    "id": "gb_vat_standard",
    "name": "Standard",
    "display_name": "% VAT",
    "default": true,
    "amounts": [
    {
        "id": "gb_vat_standard_1991",
        "amount": 0.175,
        "start_date": "1991­03­19",
        "end_date": "2008­11­30"
        },
                        
WE'RE DOING SOMETHING RIGHT...
DRUPAL COMMERCE 2.X
DRUPAL COMMERCE 2.X SPRINT
Validated the architecture with members of SensioLabs,
Smile, Publicis Modem, OSInet, i-KOS, Adyax, Ekino, and
others.
ONCE AGAIN, WE START FROM SCRATCH
<?php
namespace DrupalcommerceEntity
                        
2.X ENTITY RELATIONSHIP MODEL
MULTI-STORE / MULTI-VENDOR
HIERARCHICAL PRODUCT MODEL
IMPROVED ORDER WORKFLOWS
IMPROVED PAYMENT PROCESSING
Create a "mini" ledger for payments with double entry like
accounting features.
TRY IT OUT
CONTRIBUTE ON GITHUB
QUESTIONS?
Office hours: Wednesdays at 1PM GMT
Find us in #drupal-commerce.

More Related Content

Similar to Drupal Commerce 2.x DrupalCamp London 2015

Serverless projects at Myplanet
Serverless projects at MyplanetServerless projects at Myplanet
Serverless projects at MyplanetDaniel Zivkovic
 
Promo Voip Drupal Hands On Experience Webinar
Promo Voip Drupal Hands On Experience WebinarPromo Voip Drupal Hands On Experience Webinar
Promo Voip Drupal Hands On Experience WebinarMicky Metts
 
Your Business. Your Language. Your Code - dpc13
Your Business. Your Language. Your Code - dpc13Your Business. Your Language. Your Code - dpc13
Your Business. Your Language. Your Code - dpc13Stephan Hochdörfer
 
Drupal Commerce, DrupalCamp Colorado 2010
Drupal Commerce, DrupalCamp Colorado 2010Drupal Commerce, DrupalCamp Colorado 2010
Drupal Commerce, DrupalCamp Colorado 2010Ryan Szrama
 
The State of Drupal Commerce - May 2017
The State of Drupal Commerce - May 2017The State of Drupal Commerce - May 2017
The State of Drupal Commerce - May 2017Greg Beuthin
 
Integrating Bounded Contexts Tips - Dutch PHP 2016
Integrating Bounded Contexts Tips - Dutch PHP 2016Integrating Bounded Contexts Tips - Dutch PHP 2016
Integrating Bounded Contexts Tips - Dutch PHP 2016Carlos Buenosvinos
 
Ruby on Rails For Java Programmers
Ruby on Rails For Java ProgrammersRuby on Rails For Java Programmers
Ruby on Rails For Java Programmerselliando dias
 
Sap Adapter V2.0 For My Saptm Business Suits Configuration
Sap Adapter V2.0 For My Saptm Business Suits ConfigurationSap Adapter V2.0 For My Saptm Business Suits Configuration
Sap Adapter V2.0 For My Saptm Business Suits Configurationako1976
 
Getting to know composer - (PHP)
Getting to know composer - (PHP)Getting to know composer - (PHP)
Getting to know composer - (PHP)Bill Condo
 
Refactor your Specs - 2017 Edition
Refactor your Specs - 2017 EditionRefactor your Specs - 2017 Edition
Refactor your Specs - 2017 EditionCyrille Martraire
 
Expert Days 2011: The VP R&D Open Seminar: Systems Performance Seminar
Expert Days 2011: The VP R&D Open Seminar: Systems Performance Seminar Expert Days 2011: The VP R&D Open Seminar: Systems Performance Seminar
Expert Days 2011: The VP R&D Open Seminar: Systems Performance Seminar Moshe Kaplan
 
Short VoIP Drupal Introduction - What is it?
Short VoIP Drupal Introduction - What is it?Short VoIP Drupal Introduction - What is it?
Short VoIP Drupal Introduction - What is it?Micky Metts
 
Benchmark of ecommerce solutions (short version, english)
Benchmark of ecommerce solutions (short version, english)Benchmark of ecommerce solutions (short version, english)
Benchmark of ecommerce solutions (short version, english)Philippe Humeau
 
Benchmark of e-commerce solutions
Benchmark of e-commerce solutionsBenchmark of e-commerce solutions
Benchmark of e-commerce solutionsNBS System
 
WCA eCommerce Workshop 1: Adding value to your eCommerce Division
WCA eCommerce Workshop 1: Adding value to your eCommerce Division WCA eCommerce Workshop 1: Adding value to your eCommerce Division
WCA eCommerce Workshop 1: Adding value to your eCommerce Division Kaitlyn Mode
 
resolvendo problemas de comunicação em equipes distribuídas com bdd
resolvendo problemas de comunicação em equipes distribuídas com bddresolvendo problemas de comunicação em equipes distribuídas com bdd
resolvendo problemas de comunicação em equipes distribuídas com bddRodrigo Urubatan
 
Improve your supply chain with Acctivate & B2BGateway | B2BGateway co-hosted ...
Improve your supply chain with Acctivate & B2BGateway | B2BGateway co-hosted ...Improve your supply chain with Acctivate & B2BGateway | B2BGateway co-hosted ...
Improve your supply chain with Acctivate & B2BGateway | B2BGateway co-hosted ...Agnieszka (Aggie) Grabowska
 

Similar to Drupal Commerce 2.x DrupalCamp London 2015 (20)

Serverless projects at Myplanet
Serverless projects at MyplanetServerless projects at Myplanet
Serverless projects at Myplanet
 
Drupal8 simplepage v2
Drupal8 simplepage v2Drupal8 simplepage v2
Drupal8 simplepage v2
 
Promo Voip Drupal Hands On Experience Webinar
Promo Voip Drupal Hands On Experience WebinarPromo Voip Drupal Hands On Experience Webinar
Promo Voip Drupal Hands On Experience Webinar
 
Your Business. Your Language. Your Code - dpc13
Your Business. Your Language. Your Code - dpc13Your Business. Your Language. Your Code - dpc13
Your Business. Your Language. Your Code - dpc13
 
Drupal Commerce, DrupalCamp Colorado 2010
Drupal Commerce, DrupalCamp Colorado 2010Drupal Commerce, DrupalCamp Colorado 2010
Drupal Commerce, DrupalCamp Colorado 2010
 
The State of Drupal Commerce - May 2017
The State of Drupal Commerce - May 2017The State of Drupal Commerce - May 2017
The State of Drupal Commerce - May 2017
 
Integrating Bounded Contexts Tips - Dutch PHP 2016
Integrating Bounded Contexts Tips - Dutch PHP 2016Integrating Bounded Contexts Tips - Dutch PHP 2016
Integrating Bounded Contexts Tips - Dutch PHP 2016
 
Ruby on Rails For Java Programmers
Ruby on Rails For Java ProgrammersRuby on Rails For Java Programmers
Ruby on Rails For Java Programmers
 
Value driver identification diagram
Value driver identification diagramValue driver identification diagram
Value driver identification diagram
 
Sap Adapter V2.0 For My Saptm Business Suits Configuration
Sap Adapter V2.0 For My Saptm Business Suits ConfigurationSap Adapter V2.0 For My Saptm Business Suits Configuration
Sap Adapter V2.0 For My Saptm Business Suits Configuration
 
Getting to know composer - (PHP)
Getting to know composer - (PHP)Getting to know composer - (PHP)
Getting to know composer - (PHP)
 
Refactor your Specs - 2017 Edition
Refactor your Specs - 2017 EditionRefactor your Specs - 2017 Edition
Refactor your Specs - 2017 Edition
 
Expert Days 2011: The VP R&D Open Seminar: Systems Performance Seminar
Expert Days 2011: The VP R&D Open Seminar: Systems Performance Seminar Expert Days 2011: The VP R&D Open Seminar: Systems Performance Seminar
Expert Days 2011: The VP R&D Open Seminar: Systems Performance Seminar
 
Short VoIP Drupal Introduction - What is it?
Short VoIP Drupal Introduction - What is it?Short VoIP Drupal Introduction - What is it?
Short VoIP Drupal Introduction - What is it?
 
Benchmark of ecommerce solutions (short version, english)
Benchmark of ecommerce solutions (short version, english)Benchmark of ecommerce solutions (short version, english)
Benchmark of ecommerce solutions (short version, english)
 
Benchmark of e-commerce solutions
Benchmark of e-commerce solutionsBenchmark of e-commerce solutions
Benchmark of e-commerce solutions
 
WCA eCommerce Workshop 1: Adding value to your eCommerce Division
WCA eCommerce Workshop 1: Adding value to your eCommerce Division WCA eCommerce Workshop 1: Adding value to your eCommerce Division
WCA eCommerce Workshop 1: Adding value to your eCommerce Division
 
resolvendo problemas de comunicação em equipes distribuídas com bdd
resolvendo problemas de comunicação em equipes distribuídas com bddresolvendo problemas de comunicação em equipes distribuídas com bdd
resolvendo problemas de comunicação em equipes distribuídas com bdd
 
Greg Demo Slides
Greg Demo SlidesGreg Demo Slides
Greg Demo Slides
 
Improve your supply chain with Acctivate & B2BGateway | B2BGateway co-hosted ...
Improve your supply chain with Acctivate & B2BGateway | B2BGateway co-hosted ...Improve your supply chain with Acctivate & B2BGateway | B2BGateway co-hosted ...
Improve your supply chain with Acctivate & B2BGateway | B2BGateway co-hosted ...
 

Recently uploaded

Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...Diya Sharma
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445ruhi
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Servicesexy call girls service in goa
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...tanu pandey
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersDamian Radcliffe
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663Call Girls Mumbai
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Standkumarajju5765
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.soniya singh
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝soniya singh
 

Recently uploaded (20)

Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
 
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
 

Drupal Commerce 2.x DrupalCamp London 2015