Updater::getInstallArgs

protected Updater::getInstallArgs($overrides = array())

Stores the default parameters for the Updater.

Parameters

array $overrides: An array of overrides for the default parameters.

Return value

array An array of configuration parameters for an update or install operation.

File

core/lib/Drupal/Core/Updater/Updater.php, line 191

Class

Updater
Defines the base class for Updaters used in Drupal.

Namespace

Drupal\Core\Updater

Code

protected function getInstallArgs($overrides = array()) {
  $args = array(
    'make_backup' => FALSE,
    'install_dir' => $this->getInstallDirectory(),
    'backup_dir' => $this->getBackupDir(),
  );
  return array_merge($args, $overrides);
}
doc_Drupal
2016-10-29 09:51:04
Comments
Leave a Comment

Please login to continue.