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);
}
doc_Drupal
2016-10-29 09:51:06
Comments
Leave a Comment

Please login to continue.