public function Updater::__construct

public Updater::__construct($source, $root)

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 38

Class

Updater
Defines the base class for Updaters used in Drupal.

Namespace

Drupal\Core\Updater

Code

public function __construct($source, $root) {
  $this->source = $source;
  $this->root = $root;
  $this->name = self::getProjectName($source);
  $this->title = self::getProjectTitle($source);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Updater!Updater.php/function/Updater::__construct/8.1.x