Standard\Controllers\Cron\CronController::upsertCronGetAction PHP Метод

upsertCronGetAction() публичный Метод

public upsertCronGetAction ( integer $id = null )
$id integer
    public function upsertCronGetAction(int $id = null)
    {
        $cron = $id ? $this->cronsTable->get($id) : $this->cronsTable->newEntity();
        echo $this->twig->render('cron/upsert.twig', ['cron' => $cron]);
    }