You are here

function backup_migrate_schedule::get_list_column_info in Backup and Migrate 6.3

Same name and namespace in other branches
  1. 8.2 includes/schedules.inc \backup_migrate_schedule::get_list_column_info()
  2. 8.3 includes/schedules.inc \backup_migrate_schedule::get_list_column_info()
  3. 6.2 includes/schedules.inc \backup_migrate_schedule::get_list_column_info()
  4. 7.3 includes/schedules.inc \backup_migrate_schedule::get_list_column_info()
  5. 7.2 includes/schedules.inc \backup_migrate_schedule::get_list_column_info()

Get the columns needed to list the type.

Overrides backup_migrate_item::get_list_column_info

File

includes/schedules.inc, line 147
All of the schedule handling code needed for Backup and Migrate.

Class

backup_migrate_schedule
A schedule class for crud operations.

Code

function get_list_column_info() {
  $out = parent::get_list_column_info();
  $out = array(
    'name' => array(
      'title' => t('Name'),
    ),
    'destination_name' => array(
      'title' => t('Destinations'),
      'html' => TRUE,
    ),
    'profile_name' => array(
      'title' => t('Profile'),
      'html' => TRUE,
    ),
    'frequency_description' => array(
      'title' => t('Frequency'),
    ),
    'keep_description' => array(
      'title' => t('Keep'),
    ),
    'enabled_description' => array(
      'title' => t('Enabled'),
    ),
    'last_run_description' => array(
      'title' => t('Last run'),
    ),
  ) + $out;
  return $out;
}