Standard\Controllers\Cron\CronController::listCronsAction PHP Method

listCronsAction() public method

public listCronsAction ( )
    public function listCronsAction()
    {
        $cronSettings = $this->cronSettings->find()->hydrate(false)->toArray();
        if (empty($cronSettings)) {
            $cronSettings = ['output' => 'cron-all.log', 'recipients' => $this->site['sender']];
            $this->cronSettings->save($this->cronSettings->newEntity()->set($cronSettings));
        }
        echo $this->twig->render('cron/list.twig', ['crons' => $this->cronsTable->find()->hydrate(false)->toArray(), 'cronSettings' => $this->cronSettings->find()->hydrate(false)->toArray()[0]]);
    }