2017 © Pedro Peláez
 

symfony-bundle cnet-connector

Akeneo PIM CNET connector

image

akeneo/cnet-connector

Akeneo PIM CNET connector

  • Thursday, January 25, 2018
  • by Fitn
  • Repository
  • 8 Watchers
  • 3 Stars
  • 28 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 3 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

CnetConnector

CNET is the world's leader in tech product reviews, news, videos and more on technology and consumer electronics., (*1)

This extension allows to enrich your products data from CNET data provider. Data structure and products data are imported through the CNET connector using native Akeneo PIM CSV files format., (*2)

Requirements

CNET Connector Akeneo PIM Community Edition
v2.0 v2.*
v1.1 v1.7.*
v1.0 v1.6.*

Installation

You can install this bundle with composer (see requirements section):, (*3)

    php composer require akeneo/cnet-connector:2.0.*

CNET connector has a dependency on the CustomEntityBundle and the ExtendedAttributeTypeBundle. Be sure to follow the install documentation of these bundles prior to the following steps., (*4)

Enable the CnetConnectorBundle in the app/AppKernel.php file in the registerBundles() method:, (*5)

    $bundles = [
        // ...
        new Pim\Bundle\CustomEntityBundle\PimCustomEntityBundle(),
        new Pim\Bundle\ExtendedAttributeTypeBundle\PimExtendedAttributeTypeBundle(),
        new Pim\Bundle\CnetConnectorBundle\PimCnetConnectorBundle(),
    ]

Add the Brand reference data in your app/config/config.yml file:, (*6)

pim_reference_data:
    brand:
        class: Pim\Bundle\CnetConnectorBundle\Entity\Brand
        type: simple

From an existing PIM instance, you will have to update your database schema and regenerate your front assets:, (*7)

    php bin/console cache:clear --env=prod --no-warmup
    php bin/console doctrine:schema:update --env=prod --force
    php bin/console --env=prod pim:installer:assets --symlink --clean
    yarn run webpack

Otherwise, you can proceed with the PIM's normal install process., (*8)

The Versions

27/06 2017
26/06 2017