public function Updater::__construct in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Updater/Updater.php \Drupal\Core\Updater\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 43 - Contains \Drupal\Core\Updater\Updater.
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);
}