You are here

function backup_migrate_item::export in Backup and Migrate 8.3

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

Return as an exported array of values.

File

includes/crud.inc, line 512
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 export() {
  $out = $this
    ->to_array();
  $out['type_name'] = $this->type_name;
  ob_start();
  var_export($out);
  $out = ob_get_contents();
  ob_end_clean();
  return $out;
}