protected Updater::getInstallArgs($overrides = array())
Stores the default parameters for the Updater.
array $overrides: An array of overrides for the default parameters.
array An array of configuration parameters for an update or install operation.
protected function getInstallArgs($overrides = array()) { $args = array( 'make_backup' => FALSE, 'install_dir' => $this->getInstallDirectory(), 'backup_dir' => $this->getBackupDir(), ); return array_merge($args, $overrides); }
© 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::getInstallArgs/8.1.x