magallanes/docs/example-config/.mage/tasks/SampleTask.php
Andrs Montaez 9cf720c602 Rollback awareness.
Tasks are aware if they are in rollbacks; they will be invoked only if
they implement the new interface RollbackAware.
2012-01-03 23:25:42 -02:00

14 lines
207 B
PHP

<?php
class Task_SampleTask
extends Mage_Task_TaskAbstract
{
public function getName()
{
return 'A Sample Task';
}
public function run()
{
return true;
}
}