function backup_migrate_destination_browser_upload::__construct in Backup and Migrate 8.3
Same name and namespace in other branches
- 8.2 includes/destinations.browser.inc \backup_migrate_destination_browser_upload::__construct()
- 6.3 includes/destinations.browser.inc \backup_migrate_destination_browser_upload::__construct()
- 6.2 includes/destinations.browser.inc \backup_migrate_destination_browser_upload::__construct()
- 7.3 includes/destinations.browser.inc \backup_migrate_destination_browser_upload::__construct()
- 7.2 includes/destinations.browser.inc \backup_migrate_destination_browser_upload::__construct()
Constructor, set the basic info pulled from the db or generated programatically.
Overrides backup_migrate_item::__construct
File
- includes/
destinations.browser.inc, line 31 - Functions to handle the browser upload/download backup destination.
Class
- backup_migrate_destination_browser_upload
- A destination type for browser upload.
Code
function __construct() {
$params = array();
$params['name'] = "Upload";
$params['machine_name'] = 'upload';
parent::__construct($params);
}