所以,我有一个 cron 工作,代码如下:
class UGCJReminder extends UGCronJob {
/**
* return the cron description
*/
protected function getDescription()
{
return Yii::t('userGroupsModule.cron', 'manda email para os usuarios cadastrados para cadastrar suas atividades');
}
/**
* return the cron table model name
*/
protected function getCronTable()
{
return 'UserGroupsCron';
}
/**
* return the cron name
*/
protected function getName()
{
return 'reminder';
}
/**
* returns the number of days that have to pass before performing this cron job
*/
protected function getLapse()
{
return 1;
}
/**
* return the model
*/
protected function getModel()
{
return new UserGroupsUser;
}
/**
* return the action method
*/
protected function getAction()
{
Yii::import('ext.yii-mail.YiiMailMessage');
$message = new YiiMailMessage;
$message->setBody('Message', 'text/html');
$message->subject = 'Lembrete';
$message->addTo('my-email');
$message->from = Yii::app()->params['adminEmail'];
return Yii::app()->mail->send($message);
}
/**
* return the action criteria
*/
protected function getCriteria()
{
return new CDbCriteria;
}
/**
* return the interested database fields
*/
protected function getColumns()
{
return array('email' => UserGroupsUser::ACTIVE);
#return NULL;
}
}
我对用户组(Yii 模块)要求的文档进行了所有其他更改,并且 cron 列表显示我的 cron 已安装并正在运行。但是,它每天运行多次,每天只运行一次。那么我做错了什么?
我也会接受这个问题的另一种解决方案(在每天确定的时间发送电子邮件)。请考虑我正在使用 Yii,因此希望有一种在框架内执行此操作的方法(例如,使用扩展)
PS:如果你知道关于这一切的好的文档来源(因为用户组、Cron-tab 和 Yii 本身在记录这一切是如何工作的方面并不那么强大)我仍然会对此感兴趣