function Updater::__construct
Constructs a new updater.
Parameters
string $source: Directory to install from.
string $root: The root directory under which the project will be copied to if it's a new project. Usually this is the app root (the directory in which the Drupal site is installed).
File
-
core/
lib/ Drupal/ Core/ Updater/ Updater.php, line 47
Class
- Updater
- Defines the base class for Updaters used in Drupal.
Namespace
Drupal\Core\UpdaterCode
public function __construct($source, $root) {
$this->source = $source;
$this->root = $root;
$this->name = self::getProjectName($source);
$this->title = self::getProjectTitle($source);
}