2017 © Pedro Peláez
 

library cog-mothership-commerce

Cog module for commerce building blocks in Mothership

image

mothership-ec/cog-mothership-commerce

Cog module for commerce building blocks in Mothership

  • Monday, May 9, 2016
  • by thomasjthomasj
  • Repository
  • 6 Watchers
  • 5 Stars
  • 2,169 Installations
  • PHP
  • 7 Dependents
  • 0 Suggesters
  • 2 Forks
  • 101 Open issues
  • 100 Versions
  • 0 % Grown

The README.md

Mothership Commerce

The Message\Mothership\Commerce Cogule provides base commerce functionality for Mothership. This forms part of the building blocks for both ECommerce and EPOS., (*1)

Installation

Install this package using Composer. The package name is message/cog-mothership-commerce., (*2)

You will need to add Message's private package server to the repositories key in composer.json:, (*3)

{
    "repositories": [
        {
            "type": "composer",
            "url" : "http://packages.message.co.uk"
        }
    ],
    "require": {
        "message/cog-mothership-commerce": "~4.1"
    }
}

Product

A Product object represents a certain product. They provide attributes such as the category and brand as well a prices. Units allow Variants on Products such as "size" and "colour". For this reason, it is usually desirable to use Units over Products when displaying prices to users., (*4)

If no prices are provided on a Unit, it will default to the Product prices., (*5)

Product\Types

Each product has a Type associated to it. The main use of a Type is to allow different information to be required by different products. For example a MusicProductType requires an Artist to be provided. Types also allow the "display name" to be set into to a different format., (*6)

Types provided for use within the admin panel are set in the IoC as the service product.types. Only types registered in the service container may be used when creating products., (*7)

Product\Price

The product Pricing object is a group of prices (float) mapped against Currency and Locale. Product and Unit objects have a Pricing object which they use when calling getPrice(), getNetPrice() etc. This object does the legwork of getting the correct price to display based on currency and locale., (*8)

Product\Tax

Product taxes are loaded onto the product using an instance of TaxResolverInterface. Net and Gross prices are calculated using these tax rates and an instance of TaxStrategyInterface., (*9)

TaxResolver

The TaxResolverInterface is an interface for a class that will take a token and an Address and return a TaxCollection containing all the applicable tax rates for that token/address combination. By default, the TaxResolver is used. This looks within the tax.yml file to resolve taxes., (*10)

TaxStrategy

Whilst it is possible to implement the interface to provide further tax strategies, realistically there are only two which will be used. These are Tax Inclusive and Tax Exclusive. These are provided within Commerce., (*11)

Product\Stock

General

Product\Stock is responsible for handling stock changes. Every stock change is documented as a stock adjustment(Product\Stock\Movement\Adjustment\Adjustment). Stock adjustments created within the same action(creating a new order/ adjusting stock levels in one request) are surrounded by a stock movement(Product\Stock\Movement\Movement), to give them a reason, authorship, etc., (*12)

Stock Manager

The stock manager Product\Stock\StockManager is responsible for creating and saving new stock movements (and adjustments). Please read the detailed readme of Product\Stock for more information!, (*13)

Movement Iterator

Also there is an Iterator for stock movements, which allows you to iterate over the stock history and get the stock level at any time before or after a movement. Please read the detailed readme of Product\Stock for more information!, (*14)

Product Page Mapper

The commerce package ships with two implementations of the product page mapper: SimpleMapper and OptionCriteriaMapper. By default the SimpleMapper is aliased to product.page_mapper., (*15)

Configuration

To enable the mapper to correctly relate products to pages you must set the valid values for product_content.field_name and product_content.group_name for product pages. Additionally you should set the valid page types. You can change these using:, (*16)

$services->extend('product.page_mapper', function($mapper, $c) {
    $mapper->setValidFieldNames('product');

    // Passing an array to either method will match against all values
    $mapper->setValidGroupNames(['product', 'showcase']);

    // Passing false to the group name will exclude pages within any group
    $mapper->setValidGroupNames(false);

    // Passing null or an empty array to the group name will match pages with
    // any or no group
    $mapper->setValidGroupNames([]);

    $mapper->setValidPageTypes(['product', 'strap']);

    return $mapper;
});

These default to:, (*17)

  • Field Names: 'product'
  • Group Names: null
  • Page Types: 'product'

Simple Mapper

The simple mapper just matches a basic product to a page., (*18)

Usage

// Find a page from a product
$page = $services['product.page_mapper']->getPageForProduct($product);

// Find a product from a page
$product = $services['product.page_mapper']->getProductForPage($page);

Option Criteria Mapper

The option criteria mapper can additionally apply a filter for a specific product option, for example ['colour' => 'red']. You can pass any number of options: ['colour' => 'red', 'size' => 'medium']., (*19)

To enable the option criteria mapper you must alias it to the page mapper in your services:, (*20)

$services['product.page_mapper'] = $services->raw('product.page_mapper.option_criteria');

Usage

In addition to the previous methods, you can also call:, (*21)

// Find all pages from a product
$pages = $services['product.page_mapper']->getPagesForProduct($product, ['colour' => 'red']);

// Find a page from a unit
$page = $services['product.page_mapper']->getPageForProductUnit($unit);

// Find units from a page
$units = $services['product.page_mapper']->getProductUnitsForPage($page);

Custom Mappers

When writing a custom mapper you should extend AbstractMapper to ensure compatibility., (*22)

Filters

You can optionally pass in filter callbacks that are applied after the results are pulled from the database. Returning false from the callback will remove the object from the results., (*23)

Usage

$services->extend('product.page_mapper', function($mapper, $c) {
    $mapper->addFilter(function($obj) {
        if ($obj instanceof Page) {
            return (false !== stristr($obj->title, "foo"));
        }
    });

    return $mapper;
});

License

Mothership E-Commerce Copyright (C) 2015 Jamie Freeman, (*24)

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, or (at your option) any later version., (*25)

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., (*26)

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/., (*27)

The Versions

09/05 2016

dev-develop

dev-develop http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

09/05 2016

dev-master

9999999-dev http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

09/05 2016

5.20.0

5.20.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

21/04 2016

5.19.1

5.19.1.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

05/04 2016

5.19.0

5.19.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

15/03 2016

dev-feature/dont-load-deleted-product-units

dev-feature/dont-load-deleted-product-units http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

14/03 2016

5.18.2

5.18.2.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

09/03 2016

5.18.1

5.18.1.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

03/02 2016

5.18.0

5.18.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

22/01 2016
11/01 2016
07/01 2016

dev-feature/unit-form-changes

dev-feature/unit-form-changes http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

09/12 2015

dev-feature/image-option-casing

dev-feature/image-option-casing http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

08/12 2015
01/12 2015

dev-feature/unit-loader-fixes

dev-feature/unit-loader-fixes http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

18/11 2015
16/11 2015

dev-feature/admin-rebuild

dev-feature/admin-rebuild http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

29/10 2015
20/10 2015
15/10 2015

5.15.1

5.15.1.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

14/10 2015

5.15.0

5.15.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

02/10 2015

dev-feature/loader-accessors

dev-feature/loader-accessors http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

02/10 2015

5.14.1

5.14.1.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

25/09 2015

dev-feature/sales-product-names

dev-feature/sales-product-names http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

18/09 2015

dev-feature/product-filters-user-report

dev-feature/product-filters-user-report http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

18/09 2015

5.14.0

5.14.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

10/09 2015

5.13.0

5.13.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

07/09 2015

dev-feature/units-dont-include-deleted

dev-feature/units-dont-include-deleted http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

03/09 2015

dev-feature/product-option-loader-changes

dev-feature/product-option-loader-changes http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

03/09 2015

5.12.0

5.12.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

02/09 2015

5.11.0

5.11.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

02/09 2015

dev-feature/optimise-unit-loader

dev-feature/optimise-unit-loader http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

27/08 2015

dev-feature/optimise-stock-report

dev-feature/optimise-stock-report http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

14/08 2015

5.10.2

5.10.2.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

13/08 2015

dev-feature/unit-tests

dev-feature/unit-tests http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

11/08 2015

5.10.1

5.10.1.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

07/08 2015

5.10.0

5.10.0.0 http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

04/08 2015
28/07 2015

dev-feature/pageloader-pagination-mpty-by-id

dev-feature/pageloader-pagination-mpty-by-id http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

28/07 2015
01/07 2015
18/06 2015
16/06 2015
26/05 2015
20/05 2015
28/04 2015
27/04 2015
27/04 2015

dev-feature/filter-fix

dev-feature/filter-fix http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

14/04 2015
13/04 2015
10/04 2015

dev-feature/csv-convert-date-to-timestamp

dev-feature/csv-convert-date-to-timestamp http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

02/04 2015

dev-feature/discounts-on-reports

dev-feature/discounts-on-reports http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

02/04 2015
02/04 2015
23/03 2015

dev-feature/order-listing-pagination-fix

dev-feature/order-listing-pagination-fix http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

23/03 2015
23/03 2015

dev-feature/delete-addresses

dev-feature/delete-addresses http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

13/03 2015

dev-beta-features

dev-beta-features http://mothership.ec

Cog module for commerce building blocks in Mothership

  Sources   Download

GPL-3.0+

The Requires

 

The Development Requires

by The Mothership Development Team

money commerce orders products order cog mothership

24/02 2015
24/02 2015

4.9.2

4.9.2.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.12
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-reports ~1.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

24/02 2015

4.9.1

4.9.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.12
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

13/02 2015

4.9.0

4.9.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.12
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

10/02 2015

4.8.2

4.8.2.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.12
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

06/02 2015

4.8.1

4.8.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.12
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

05/02 2015

4.8.0

4.8.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.12
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

03/02 2015

4.7.2

4.7.2.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.12
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

02/02 2015

dev-feature/order-overview

dev-feature/order-overview http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

28/01 2015

4.7.1

4.7.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.12
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

27/01 2015

4.7.0

4.7.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.2
  • message/cog-mothership-file-manager ~2.0
  • message/cog-mothership-user ~3.4
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

22/01 2015

4.6.0

4.6.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.1
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

13/01 2015

dev-feature/product-selector

dev-feature/product-selector http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.0
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

08/01 2015

dev-compatibility/stoneham

dev-compatibility/stoneham http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.0
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

08/01 2015

4.5.2

4.5.2.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~2.0
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

05/01 2015

4.5.1

4.5.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.7
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

23/12 2014

4.5.0

4.5.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.7
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

23/12 2014

4.4.2

4.4.2.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.9
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.7
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

22/12 2014

4.4.1

4.4.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.6
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

19/12 2014

dev-feature/tax-strategy-loader-fix

dev-feature/tax-strategy-loader-fix http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.6
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

19/12 2014

4.4.0

4.4.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.6
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

17/12 2014

4.3.1

4.3.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.6
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

16/12 2014

4.3.0

4.3.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.6
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

08/12 2014

4.2.0

4.2.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

08/12 2014

dev-feature/add-get-payments-to-payable

dev-feature/add-get-payments-to-payable http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

04/11 2014

dev-feature/ux/order-improvements

dev-feature/ux/order-improvements http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

04/11 2014

4.1.1

4.1.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

08/10 2014

dev-compatibility/epos_v2

dev-compatibility/epos_v2 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

08/10 2014

dev-compatibility/union-music-store

dev-compatibility/union-music-store http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

30/09 2014

dev-feature/image-looping-bug

dev-feature/image-looping-bug http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

30/09 2014

4.1.0

4.1.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

30/09 2014

4.0.1

4.0.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

23/09 2014

dev-feature/ux/product-process

dev-feature/ux/product-process http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

16/09 2014

dev-feature/escape-fixes

dev-feature/escape-fixes http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

16/09 2014

dev-feature/issue-292-required-sku

dev-feature/issue-292-required-sku http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

16/09 2014

4.0.0

4.0.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.4
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~2.0
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

02/09 2014

dev-feature/loader-optimisation

dev-feature/loader-optimisation http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.0
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~1.3
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

02/09 2014

3.6.1

3.6.1.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.0
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~1.3
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

29/08 2014

3.6.0

3.6.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.0
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~1.3
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

29/08 2014

dev-feature/3.6.0

dev-feature/3.6.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.0
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~1.3
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

22/08 2014

dev-compatibility/ums-lazy-loading

dev-compatibility/ums-lazy-loading http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.0
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~1.2
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership

21/08 2014

3.5.0

3.5.0.0 http://message.co.uk

Cog module for commerce building blocks in Mothership

  Sources   Download

proprietary

The Requires

  • domisys/image_barcode2 3.0.0
  • message/cog ~3.0
  • message/cog-imageresize ~1.0
  • message/cog-mothership-cp ~1.3
  • message/cog-mothership-file-manager ~1.3
  • message/cog-user ~1.0
  • php >=5.4.0

 

The Development Requires

by The Message Development Team

money commerce orders products order cog mothership