public function Gardener::setDestination in Backup and migrate prune 7
Same name and namespace in other branches
- 7.2 class/Gardener.php \Gardener::setDestination()
Set the destination for the gardener
Parameters
$destination: The destination object associated with this gardener
2 calls to Gardener::setDestination()
- Gardener::getDestination in class/
Gardener.php - Get the destination for the gardener
- Gardener::load in class/
Gardener.php - Load the settings of a gardener and return an instance of it.
File
- class/
Gardener.php, line 356 - Gardener class implementation file
Class
- Gardener
- Gardener class implementation
Code
public function setDestination($destination = NULL) {
$this->destination = $destination;
}