Skip to content

💹 Statistics for your symfony app, simply.

License

Notifications You must be signed in to change notification settings

suminagashi/figures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Figures

Statistics for your symfony app, simply.

Install the bundle :

Flex recipe incoming...

Register the bundle :

// config/bundles.php

return [
    ...
    Suminagashi\FiguresBundle\FiguresBundle::class => ['all' => true],
];

Add the Figure entity to your database :

php bin/console doctrine:schema:update --force

Setup your entities :

First you need to import Suminagashi\FiguresBundle\Annotation\Watch annotation. Then you have to write add the key of your stat, the type (cumul or count) and the lifecycle (at which lifecycle you want the stat to register).

use Suminagashi\FiguresBundle\Annotation\Watch;

class Product
{
    //...

    /**
     *
     * @ORM\Column(type="integer")
     *
     * @Watch(key="product:price", type="cumul", lifecycle="update")
     * @Watch(key="product:sell", type="count", lifecycle="create")
     */
    private $price;

    //***

How does this works :

There is two mode of stats calculation :

  • count is for counting the number of sales (e.g).
  • cumul is for calculating the amount of sales (e.g).

How to get a specific stats :

First you need to import Suminagashi\FiguresBundle\Tools\Figures in your code. Then you can autowire the class and start using it. We provide few methods to help you :

$figures = new Figures();

$figures->all('key');
$figures->getToday('key');
$figures->getLastweek('key');
$figures->getLastmonth('key');
$figures->getLastyear('key');
$figures->get('key', 'start', 'end');

Coming :

  • Stat percentages calculations.
  • Statut type
  • Better exception handling
  • Handle delete (cascade)

About

💹 Statistics for your symfony app, simply.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages