PDF rausgenommen
This commit is contained in:
29
msd2/tracking/piwik/plugins/ScheduledReports/Tasks.php
Normal file
29
msd2/tracking/piwik/plugins/ScheduledReports/Tasks.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* Piwik - free/libre analytics platform
|
||||
*
|
||||
* @link http://piwik.org
|
||||
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
|
||||
*
|
||||
*/
|
||||
namespace Piwik\Plugins\ScheduledReports;
|
||||
|
||||
use Piwik\Scheduler\Schedule\Schedule;
|
||||
use Piwik\Site;
|
||||
|
||||
class Tasks extends \Piwik\Plugin\Tasks
|
||||
{
|
||||
public function schedule()
|
||||
{
|
||||
foreach (API::getInstance()->getReports() as $report) {
|
||||
if (!$report['deleted'] && $report['period'] != Schedule::PERIOD_NEVER) {
|
||||
|
||||
$schedule = Schedule::getScheduledTimeForPeriod($report['period']);
|
||||
$schedule->setHour($report['hour']);
|
||||
$schedule->setTimezone('UTC'); // saved hour is UTC always
|
||||
|
||||
$this->custom(API::getInstance(), 'sendReport', $report['idreport'], $schedule);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user