Update to Drupal 8.0.0-rc3. For more information, see https://www.drupal.org/node/2608078

This commit is contained in:
Pantheon Automation 2015-11-04 11:11:27 -08:00 committed by Greg Anderson
parent 6419a031d7
commit 4afb23bbd3
762 changed files with 20080 additions and 6368 deletions

View file

@ -49,7 +49,7 @@ class Module extends Updater implements UpdaterInterface {
}
/**
* Implements Drupal\Core\Updater\UpdaterInterface::isInstalled().
* {@inheritdoc}
*/
public function isInstalled() {
// Check if the module exists in the file system, regardless of whether it
@ -59,7 +59,7 @@ class Module extends Updater implements UpdaterInterface {
}
/**
* Implements Drupal\Core\Updater\UpdaterInterface::canUpdateDirectory().
* {@inheritdoc}
*/
public static function canUpdateDirectory($directory) {
$info = static::getExtensionInfo($directory);
@ -106,7 +106,7 @@ class Module extends Updater implements UpdaterInterface {
}
/**
* Overrides Drupal\Core\Updater\Updater::postInstallTasks().
* {@inheritdoc}
*/
public function postInstallTasks() {
// Since this is being called outsite of the primary front controller,
@ -137,7 +137,7 @@ class Module extends Updater implements UpdaterInterface {
}
/**
* Overrides Drupal\Core\Updater\Updater::postUpdateTasks().
* {@inheritdoc}
*/
public function postUpdateTasks() {
// We don't want to check for DB updates here, we do that once for all

View file

@ -49,7 +49,7 @@ class Theme extends Updater implements UpdaterInterface {
}
/**
* Implements Drupal\Core\Updater\UpdaterInterface::isInstalled().
* {@inheritdoc}
*/
public function isInstalled() {
// Check if the theme exists in the file system, regardless of whether it
@ -59,7 +59,7 @@ class Theme extends Updater implements UpdaterInterface {
}
/**
* Implements Drupal\Core\Updater\UpdaterInterface::canUpdateDirectory().
* {@inheritdoc}
*/
static function canUpdateDirectory($directory) {
$info = static::getExtensionInfo($directory);
@ -80,7 +80,7 @@ class Theme extends Updater implements UpdaterInterface {
}
/**
* Overrides Drupal\Core\Updater\Updater::postInstall().
* {@inheritdoc}
*/
public function postInstall() {
// Update the theme info.
@ -89,7 +89,7 @@ class Theme extends Updater implements UpdaterInterface {
}
/**
* Overrides Drupal\Core\Updater\Updater::postInstallTasks().
* {@inheritdoc}
*/
public function postInstallTasks() {
// Since this is being called outsite of the primary front controller,