You are here

function backup_migrate_theme in Backup and Migrate 7.2

Same name and namespace in other branches
  1. 8.2 backup_migrate.module \backup_migrate_theme()
  2. 8.3 backup_migrate.module \backup_migrate_theme()
  3. 6.3 backup_migrate.module \backup_migrate_theme()
  4. 6.2 backup_migrate.module \backup_migrate_theme()
  5. 7.3 backup_migrate.module \backup_migrate_theme()

Implementation of hook_theme().

File

./backup_migrate.module, line 223
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_theme() {
  $themes = array(
    'backup_migrate_ui_manual_quick_backup_form' => array(
      'arguments' => array(
        'form',
      ),
      'render element' => 'form',
    ),
  );
  return $themes;
}