mautic / app /bundles /ReportBundle /Model /ReportExportOptions.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\ReportBundle\Model;
use Mautic\CoreBundle\Helper\CoreParametersHelper;
class ReportExportOptions
{
/**
* @var int
*/
private $batchSize;
private int $page;
/**
* @var \DateTimeInterface
*/
private $dateFrom;
/**
* @var \DateTimeInterface
*/
private $dateTo;
public function __construct(CoreParametersHelper $coreParametersHelper)
{
$this->batchSize = $coreParametersHelper->get('report_export_batch_size');
$this->page = 1;
}
public function beginExport(): void
{
$this->page = 1;
}
public function nextBatch(): void
{
++$this->page;
}
/**
* @return int
*/
public function getBatchSize()
{
return $this->batchSize;
}
public function getPage(): int
{
return $this->page;
}
/**
* @return int
*/
public function getNumberOfProcessedResults()
{
return $this->page * $this->getBatchSize();
}
/**
* @return \DateTimeInterface
*/
public function getDateFrom()
{
return $this->dateFrom;
}
/**
* @param \DateTime $dateFrom
*/
public function setDateFrom($dateFrom): void
{
$this->dateFrom = $dateFrom;
}
/**
* @return \DateTimeInterface
*/
public function getDateTo()
{
return $this->dateTo;
}
/**
* @param \DateTime $dateTo
*/
public function setDateTo($dateTo): void
{
$this->dateTo = $dateTo;
}
}