コード例 #1
0
 function CronApplicationJob($entryScript, $commandName, $parameters = array(), $min = NULL, $hour = NULL, $day = NULL, $month = NULL, $dayofweek = NULL)
 {
     $this->entryScript = $entryScript;
     $this->commandName = $commandName;
     $this->parameters = $parameters;
     $command = $this->getCommand();
     parent::Cronjob($command, $min, $hour, $day, $month, $dayofweek);
     return $this;
 }