![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/app/bundles/ReportBundle/Model/ |
<?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; } }