mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 11:00:40 +08:00
39 lines
727 B
PHP
39 lines
727 B
PHP
<?php
|
|
|
|
namespace App\Legacy\Statistics;
|
|
|
|
use App\Entity\Statistic;
|
|
use App\Service\StatisticsProviderInterface;
|
|
|
|
class SubpanelLeadsTotal implements StatisticsProviderInterface
|
|
{
|
|
public const KEY = 'leads';
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getKey(): string
|
|
{
|
|
return self::KEY;
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function getData(array $param): Statistic
|
|
{
|
|
|
|
$statistic = new Statistic();
|
|
$statistic->setId(self::KEY);
|
|
$statistic->setData([
|
|
'value' => '4'
|
|
]);
|
|
|
|
$statistic->setMetadata([
|
|
'type' => 'single-value-statistic',
|
|
'dataType' => 'int',
|
|
]);
|
|
|
|
return $statistic;
|
|
}
|
|
}
|