hello,
have you guys seen a good Bulk action extension for Yii (not sure if there is such a thing )?
I’m looking for something like deleting a bunch/selected users from a list, sending them messages etc
thanks,
–iM
hello,
have you guys seen a good Bulk action extension for Yii (not sure if there is such a thing )?
I’m looking for something like deleting a bunch/selected users from a list, sending them messages etc
thanks,
–iM
What are you trying to do?
Personally I prefer foreach to do bulk actions.
For deleting multiple users just execute "delete from users where id in (1, 2, 3)".
For sending email — create a console command and assign it to a cron job.