You are here

function backup_migrate_item::get_list_column_info in Backup and Migrate 8.2

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

Get the columns needed to list the type.

5 calls to backup_migrate_item::get_list_column_info()
backup_migrate_destination::get_list_column_info in includes/destinations.inc
Get the columns needed to list the type.
backup_migrate_item::get_list_header in includes/crud.inc
Get header for a lost of this type.
backup_migrate_item::get_list_row in includes/crud.inc
Get a row of data to be used in a list of items of this type.
backup_migrate_profile::get_list_column_info in includes/profiles.inc
Get the columns needed to list the type.
backup_migrate_schedule::get_list_column_info in includes/schedules.inc
Get the columns needed to list the type.
3 methods override backup_migrate_item::get_list_column_info()
backup_migrate_destination::get_list_column_info in includes/destinations.inc
Get the columns needed to list the type.
backup_migrate_profile::get_list_column_info in includes/profiles.inc
Get the columns needed to list the type.
backup_migrate_schedule::get_list_column_info in includes/schedules.inc
Get the columns needed to list the type.

File

includes/crud.inc, line 459
CRUD functions for backup and migrate types (schedules, profiles etc.).

Class

backup_migrate_item
A base class for items which can be stored in the database, listed, edited, deleted etc.

Code

function get_list_column_info() {
  return array(
    'actions' => array(
      'title' => t('Operations'),
      'html' => TRUE,
    ),
  );
}