Difference between #1 and #3 of
Cron Jobs in Yii

Changes

Title unchanged

Cron Jobs in Yii

Category unchanged

How-tos

Yii version unchanged

Tags unchanged

cron, cronjobs, heroku, bash, console, Yii Console, yiic

Content changed

[...]
'parameters' => 'text',
'execution_result' => 'text'
));
```

Next, I generated a model using Gii. Then I added two methods

 
 
 
~~~
 
:
 
 
```php 
public function beforeValidate(){
if(gettype($this->parameters) !== "string"){
$this->parameters = serialize($this->parameters);
[...]
return parent::afterFind();
}
~~~```

When you are creating a new CronJob, pass any parameters in as an array and the Model will serialize them for you.
[...]
Next, we need the CronCommand so that we can process these jobs from the command line. I set mine up with one action (actionIndex) that processes all the jobs. It selects all the jobs that need to be executed that haven't yet been, and starts to process them.

For all the code, check out the github page at [https://github.com/aarondfrancis/yii-CronCommand](https://github.com/aarondfrancis/yii-CronCommand "https://github.com/aarondfrancis/yii-CronCommand"). There you will find the migration, the model, the console command, and a bash script for if you are on Heroku.

 
2 0
9 followers
Viewed: 34 175 times
Version: 1.1
Category: How-tos
Written by: aarondfrancis
Last updated by: Roman Solomatin
Created on: May 6, 2013
Last updated: 8 years ago
Update Article

Revisions

View all history