You are here

function backup_migrate_element_info in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 7.3 backup_migrate.module \backup_migrate_element_info()

Implements hook_element_info().

File

./backup_migrate.module, line 207
Create (manually or scheduled) and restore backups of your Drupal MySQL database with an option to exclude table data (e.g. cache_*)

Code

function backup_migrate_element_info() {
  $types['backup_migrate_dependent'] = array(
    '#dependencies' => array(),
    '#theme' => 'backup_migrate_dependent',
  );
  $types['backup_migrate_file_list'] = array(
    '#theme' => 'backup_migrate_file_list',
    '#process' => array(
      'form_process_backup_migrate_file_list',
    ),
    '#multiple' => FALSE,
    '#files' => array(),
    '#display_options' => array(),
    '#default_value' => 0,
  );
  return $types;
}