function backup_migrate_schedule::to_array in Backup and Migrate 8.3
Same name and namespace in other branches
- 6.3 includes/schedules.inc \backup_migrate_schedule::to_array()
- 7.3 includes/schedules.inc \backup_migrate_schedule::to_array()
Return as an array of values.
Overrides backup_migrate_item::to_array
File
- includes/
schedules.inc, line 138 - All of the schedule handling code needed for Backup and Migrate.
Class
- backup_migrate_schedule
- A schedule class for crud operations.
Code
function to_array() {
$out = parent::to_array();
unset($out['last_run']);
return $out;
}