| 1 |
<?php |
<?php |
| 2 |
// $Id: schedules.inc,v 1.1.2.1.2.7 2009/03/07 19:04:46 ronan Exp $ |
// $Id: schedules.inc,v 1.1.2.1.2.8 2009/06/01 03:02:21 ronan Exp $ |
| 3 |
|
|
| 4 |
|
|
| 5 |
/** |
/** |
| 113 |
$profile = backup_migrate_get_profile($schedule['profile_id']); |
$profile = backup_migrate_get_profile($schedule['profile_id']); |
| 114 |
$row = array( |
$row = array( |
| 115 |
check_plain($schedule['name']), |
check_plain($schedule['name']), |
| 116 |
$destination ? l($destination->name(), 'admin/content/backup_migrate/destination/files/'. $destination->id()) : t("Missing"), |
$destination ? l($destination->name(), 'admin/content/backup_migrate/destination/files/'. $destination->id()) : '<div class="row-error">'. t("Missing") .'</div>', |
| 117 |
$profile ? $profile['name'] : t("Missing"), |
$profile ? $profile['name'] : '<div class="row-error">'. t("Missing") .'</div>', |
| 118 |
_backup_migrate_schedule_format_frequency($schedule['period']), |
_backup_migrate_schedule_format_frequency($schedule['period']), |
| 119 |
$schedule['keep'] ? $schedule['keep'] : t('All'), |
$schedule['keep'] ? $schedule['keep'] : t('All'), |
| 120 |
$schedule['enabled'] ? t('Enabled') : t('Disabled'), |
$schedule['enabled'] ? t('Enabled') : t('Disabled'), |