mautic / app /bundles /ReportBundle /Event /ReportGraphEvent.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\ReportBundle\Event;
use Doctrine\DBAL\Query\QueryBuilder;
use Mautic\ReportBundle\Entity\Report;
class ReportGraphEvent extends AbstractReportEvent
{
/**
* @param mixed[] $requestedGraphs
*/
public function __construct(
Report $report,
private array $requestedGraphs,
private QueryBuilder $queryBuilder
) {
$this->report = $report;
$this->context = $report->getSource();
}
/**
* Fetch the graphs.
*
* @return array
*/
public function getGraphs()
{
return $this->requestedGraphs;
}
/**
* Set the graph array.
*
* @param string $graph
* @param array $data prepared for this chart
*/
public function setGraph($graph, $data): void
{
if (!isset($this->requestedGraphs[$graph]['data'])) {
$this->requestedGraphs[$graph]['data'] = [];
}
$this->requestedGraphs[$graph]['data'] = $data;
}
/**
* Fetch the options array for the graph.
*
* @return array
*/
public function getOptions($graph)
{
return $this->requestedGraphs[$graph]['options'] ?? [];
}
/**
* Set an option for the graph.
*
* @param string $graph
* @param string $key
* @param string $value
*/
public function setOption($graph, $key, $value): void
{
if (!isset($this->requestedGraphs[$graph]['options'])) {
$this->requestedGraphs[$graph]['options'] = [];
}
$this->requestedGraphs[$graph]['options'][$key] = $value;
}
/**
* Set the options for a graph.
*
* @param string $graph
* @param array $options
*/
public function setOptions($graph, $options): void
{
$this->requestedGraphs[$graph]['options'] = $options;
}
/**
* Get graphs that are requested.
*/
public function getRequestedGraphs(): array
{
return array_keys($this->requestedGraphs);
}
/**
* @return QueryBuilder
*/
public function getQueryBuilder()
{
return $this->queryBuilder;
}
public function setQueryBuilder(QueryBuilder $queryBuilder): void
{
$this->queryBuilder = $queryBuilder;
}
}