2017 © Pedro Peláez
 

library keen-bundle

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

image

dlin/keen-bundle

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  • Friday, November 29, 2013
  • by dlin-me
  • Repository
  • 1 Watchers
  • 1 Stars
  • 45 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 10 Versions
  • 0 % Grown

The README.md

Dlin Symfony Keen Bundle

Dlin Keen Bundle is Symfony2 wrapper bundle for the 'Keen.IO' PHP library:, (*1)

This Keen Bundle provides a configurable service to work with Keen.IO, (*2)

Version

0.9, (*3)

Installation

Installation using Composer, (*4)

Add to your composer.json:, (*5)

json
{
    "require" :  {
        "dlin/keen-bundle": "dev-master"
    }
}

Enable the bundle in you AppKernel.php, (*6)

public function registerBundles()
{
    $bundles = array(
    ...
    new Dlin\Bundle\KeenBundle\DlinKeenBundle(),
    ...
}

Configuration

For example:, (*7)

#app/config/config.yml

dlin_keen:
    project_id: werknskviehraf234slf
    read_key: xxxxxxxxxxx
    write_key: xxxxxxxxx

Usage

Geting the service in a controller, (*8)

$service =  $this->get('dlin.keen_service');

Getting the service in a ContainerAwareService, (*9)

$service = $this->container->get('dlin.keen_service');

Sending an event to Keen.IO with data, (*10)

$eventCollectionName = "purchases";

$eventData = array('porduct_id'=>1, 'quantity'=>2, 'amount'=>120);

$service->fireEvent($eventCollectionName, $eventData);

Sending an event in an OOP way., (*11)

//create an event object with public properties
$eventObject = new MyPurchaseEvent();
$eventObject->productId = 1;
$eventObject->quantity = 2;
$eventObject->amount = 120;


$service->fireEventObject($eventObject); //this is equivalent to the last fireEvent call



//You can defined your own event class
Class MyPurchaseEvent{

   //Public properties will be send as event data
   public $productId;
   public $quantity;
   public $amount;

   // Procted and private properties are ignored
   protected $customerAddress;
   private $customerGender;

   //By default, the event collection name will be the class name in camelCase (e.g. myPurchaseEvent)
   //You can specify the collection name by defining a public method named 'getCollectionName'
   public function getCollectionName(){
      return 'purchases';
   }

}

Sometimes sending event can slow down your page and affect user experience. You can schedule to fire an event only after theh current script finish execution. This avoids slowing down the page loading., (*12)

...
$service->scheduleEventObject($eventObject);
$service->scheduleEvent('event_collection_name', array('data'=>123));
...

//You can get scheduled events using collection name
$service->getScheduledEvent('event_collection_name');

//You can also cancel schedule events by event collection name
$service->cancelScheduledEvents('event_collection_name');

License

MIT, (*13)

Free Software, Yeah!, (*14)

The Versions

29/11 2013

dev-master

9999999-dev http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

29/11 2013

v1.0.6

1.0.6.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

29/11 2013

v1.0.5

1.0.5.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

29/11 2013

v1.0.4

1.0.4.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

28/10 2013

1.0.2

1.0.2.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

28/10 2013

1.0.1

1.0.1.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

28/10 2013

1.0

1.0.0.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

28/10 2013

0.9.8

0.9.8.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

28/10 2013

0.9.7

0.9.7.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io

27/10 2013

0.9.6

0.9.6.0 http://dlin.me

A Syfmony 2 Bundle for Keen.IO using the office Keen.IO library

  Sources   Download

MIT

The Requires

 

The Development Requires

symfony keen.io