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

@ -352,7 +352,6 @@ td.group-title {
padding-left: 0; /* LTR */
}
[dir="rtl"] .views-displays .tabs li.tabs__tab:hover {
padding-left: 15px;
padding-right: 0;
}
.views-displays .tabs.secondary a {

View file

@ -2,7 +2,7 @@
/**
* @file
* Contains Drupal\views_ui\ProxyClass\ParamConverter\ViewUIConverter.
* Contains \Drupal\views_ui\ProxyClass\ParamConverter\ViewUIConverter.
*/
/**

View file

@ -35,7 +35,7 @@ class CustomBooleanTest extends UITestBase {
}
/**
* Overrides \Drupal\views\Tests\ViewTestBase::dataSet().
* {@inheritdoc}
*/
public function dataSet() {
$data = parent::dataSet();

View file

@ -179,7 +179,8 @@ class HandlerTest extends UITestBase {
])->save();
$this->drupalGet('admin/structure/views/nojs/add-handler/content/default/field');
$this->assertEscaped('Appears in: page, article. Also known as: Content: The <em>giraffe"</em> label <script>alert("the return of the xss")</script>');
$this->assertEscaped('The <em>giraffe"</em> label <script>alert("the return of the xss")</script>');
$this->assertEscaped('Appears in: page, article. Also known as: Content: The giraffe" label');
}
/**

View file

@ -25,7 +25,7 @@ class QueryTest extends UITestBase {
public static $testViews = array('test_view');
/**
* Overrides \Drupal\views\Tests\ViewTestBase::viewsData().
* {@inheritdoc}
*/
protected function viewsData() {
$data = parent::viewsData();

View file

@ -167,7 +167,7 @@ class ViewUI implements ViewEntityInterface {
}
/**
* Overrides \Drupal\Core\Config\Entity\ConfigEntityBase::get().
* {@inheritdoc}
*/
public function get($property_name, $langcode = NULL) {
if (property_exists($this->storage, $property_name)) {
@ -178,14 +178,14 @@ class ViewUI implements ViewEntityInterface {
}
/**
* Implements \Drupal\Core\Config\Entity\ConfigEntityInterface::setStatus().
* {@inheritdoc}
*/
public function setStatus($status) {
return $this->storage->setStatus($status);
}
/**
* Overrides \Drupal\Core\Config\Entity\ConfigEntityBase::set().
* {@inheritdoc}
*/
public function set($property_name, $value, $notify = TRUE) {
if (property_exists($this->storage, $property_name)) {
@ -941,21 +941,21 @@ class ViewUI implements ViewEntityInterface {
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::id().
* {@inheritdoc}
*/
public function id() {
return $this->storage->id();
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::uuid().
* {@inheritdoc}
*/
public function uuid() {
return $this->storage->uuid();
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::isNew().
* {@inheritdoc}
*/
public function isNew() {
return $this->storage->isNew();
@ -969,7 +969,7 @@ class ViewUI implements ViewEntityInterface {
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::bundle().
* {@inheritdoc}
*/
public function bundle() {
return $this->storage->bundle();
@ -983,7 +983,7 @@ class ViewUI implements ViewEntityInterface {
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::createDuplicate().
* {@inheritdoc}
*/
public function createDuplicate() {
return $this->storage->createDuplicate();
@ -1011,21 +1011,21 @@ class ViewUI implements ViewEntityInterface {
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::delete().
* {@inheritdoc}
*/
public function delete() {
return $this->storage->delete();
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::save().
* {@inheritdoc}
*/
public function save() {
return $this->storage->save();
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::uri().
* {@inheritdoc}
*/
public function urlInfo($rel = 'edit-form', array $options = []) {
return $this->storage->urlInfo($rel, $options);
@ -1039,14 +1039,14 @@ class ViewUI implements ViewEntityInterface {
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::label().
* {@inheritdoc}
*/
public function label() {
return $this->storage->label();
}
/**
* Implements \Drupal\Core\Entity\EntityInterface::enforceIsNew().
* {@inheritdoc}
*/
public function enforceIsNew($value = TRUE) {
return $this->storage->enforceIsNew($value);
@ -1074,21 +1074,21 @@ class ViewUI implements ViewEntityInterface {
}
/**
* Implements \Drupal\Core\Config\Entity\ConfigEntityInterface::enable().
* {@inheritdoc}
*/
public function enable() {
return $this->storage->enable();
}
/**
* Implements \Drupal\Core\Config\Entity\ConfigEntityInterface::disable().
* {@inheritdoc}
*/
public function disable() {
return $this->storage->disable();
}
/**
* Implements \Drupal\Core\Config\Entity\ConfigEntityInterface::status().
* {@inheritdoc}
*/
public function status() {
return $this->storage->status();