diego-campos-fivebyfive/customer-bundle

Sices Repo

dev-master 2019-10-23 15:36 UTC

This package is auto-updated.

Last update: 2024-04-24 02:33:52 UTC


README

Simplified management clients, extensible and integrated with FOSUserBundle

1. Installation and Configuration

Caution: This package is under development!

1.1 Download KolinaCustomerBundle using composer

$ composer require kolinalabs/customer-bundle

After downloading the package

1.2 Enable the bundle

<?php
// app/AppKernel.php
public function registerBundles()
{
    $bundles = array(
        // ...
        new Kolina\CustomerBundle\KolinaCustomerBundle(),
        // ...
    );
}

1.3 Create your customer class Tested with xml mapping

<?php
// src/AppBundle/Entity/Customer.php
namespace AppBundle\Entity;

use Kolina\CustomerBundle\Entity\Customer as AbstractCustomer;

/**
 * Customer
 */
class Customer extends AbstractCustomer
{
    // Your custom properties and methods
}

1.4 Configure app/config.yml

# app/config.yml
kolina_customer:
    entity: AppBundle\Entity\Customer

2. CRUD

2.1 Access the service manager in the controller

/**
 * @return \Kolina\CustomerBundle\Entity\CustomerManager
 */
private function getCustomerManager()
{
    return $this->get('kolina_customer.manager');
}

2.2 Example usage

// Create Customer Object
...
$manager = $this->getCustomerManager();
$customer = $manager->create();

$customer
        ->setFirstname('Foo')
        ->setLastname('Bar')
        //... other setter methods - 
        //... see \Kolina\CustomerBundle\Entity\CustomerInterface
        ;

$manager->save($customer);
...