Update to Drupal 8.1.0. For more information, see https://www.drupal.org/drupal-8.1.0-release-notes

This commit is contained in:
Pantheon Automation 2016-04-20 09:56:34 -07:00 committed by Greg Anderson
parent b11a755ba8
commit c0a0d5a94c
6920 changed files with 64395 additions and 57312 deletions

View file

@ -60,7 +60,7 @@ function dblog_views_data() {
$data['watchdog']['type'] = array(
'title' => t('Type'),
'help' => t('The of the log entry, for example "user" or "page not found.".'),
'help' => t('The type of the log entry, for example "user" or "page not found".'),
'field' => array(
'id' => 'standard',
),

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Controller\DbLogController.
*/
namespace Drupal\dblog\Controller;
use Drupal\Component\Utility\Html;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Form\DblogClearLogConfirmForm.
*/
namespace Drupal\dblog\Form;
use Drupal\Core\Form\FormStateInterface;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Form\DblogClearLogForm.
*/
namespace Drupal\dblog\Form;
use Drupal\Core\Database\Connection;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Form\DblogFilterForm.
*/
namespace Drupal\dblog\Form;
use Drupal\Core\Form\FormBase;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Logger\DbLog.
*/
namespace Drupal\dblog\Logger;
use Drupal\Component\Utility\Unicode;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Plugin\rest\resource\DBLogResource.
*/
namespace Drupal\dblog\Plugin\rest\resource;
use Drupal\rest\Plugin\ResourceBase;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Plugin\views\field\DblogMessage.
*/
namespace Drupal\dblog\Plugin\views\field;
use Drupal\Component\Utility\SafeMarkup;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Plugin\views\field\DblogOperations.
*/
namespace Drupal\dblog\Plugin\views\field;
use Drupal\views\Plugin\views\field\FieldPluginBase;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Plugin\views\wizard\Watchdog.
*/
namespace Drupal\dblog\Plugin\views\wizard;
use Drupal\views\Plugin\views\wizard\WizardPluginBase;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Tests\ConnectionFailureTest.
*/
namespace Drupal\dblog\Tests;
use Drupal\Core\Database\Database;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Tests\DbLogTest.
*/
namespace Drupal\dblog\Tests;
use Drupal\Component\Utility\Html;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Tests\Rest\DbLogResourceTest.
*/
namespace Drupal\dblog\Tests\Rest;
use Drupal\Component\Serialization\Json;

View file

@ -1,17 +1,13 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Tests\DbLogFormInjectionTest.
*/
namespace Drupal\dblog\Tests;
namespace Drupal\Tests\dblog\Kernel;
use Drupal\Core\DependencyInjection\DependencySerializationTrait;
use Drupal\Core\Form\FormInterface;
use Drupal\Core\Form\FormState;
use Drupal\Core\Form\FormStateInterface;
use Drupal\simpletest\KernelTestBase;
use Drupal\KernelTests\KernelTestBase;
use Drupal\user\Entity\User;
/**

View file

@ -1,14 +1,9 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Tests\Migrate\d6\MigrateDblogConfigsTest.
*/
namespace Drupal\dblog\Tests\Migrate\d6;
namespace Drupal\Tests\dblog\Kernel\Migrate\d6;
use Drupal\config\Tests\SchemaCheckTestTrait;
use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
/**
* Upgrade variables to dblog.settings.yml.

View file

@ -1,13 +1,8 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Tests\Migrate\d7\MigrateDblogConfigsTest.
*/
namespace Drupal\Tests\dblog\Kernel\Migrate\d7;
namespace Drupal\dblog\Tests\Migrate\d7;
use Drupal\migrate_drupal\Tests\d7\MigrateDrupal7TestBase;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
/**
* Upgrade variables to dblog.settings.yml.

View file

@ -1,26 +1,21 @@
<?php
/**
* @file
* Contains \Drupal\dblog\Tests\Views\ViewsIntegrationTest.
*/
namespace Drupal\dblog\Tests\Views;
namespace Drupal\Tests\dblog\Kernel\Views;
use Drupal\Component\Utility\SafeMarkup;
use Drupal\Component\Utility\Xss;
use Drupal\Core\Logger\RfcLogLevel;
use Drupal\Core\Url;
use Drupal\Tests\views\Kernel\ViewsKernelTestBase;
use Drupal\views\Views;
use Drupal\views\Tests\ViewTestData;
use Drupal\views\Tests\ViewKernelTestBase;
/**
* Tests the views integration of dblog module.
*
* @group dblog
*/
class ViewsIntegrationTest extends ViewKernelTestBase {
class ViewsIntegrationTest extends ViewsKernelTestBase {
/**
* Views used by this test.
@ -39,7 +34,7 @@ class ViewsIntegrationTest extends ViewKernelTestBase {
/**
* {@inheritdoc}
*/
protected function setUp() {
protected function setUp($import_test_views = TRUE) {
parent::setUp();
// Rebuild the router, otherwise we can't generate links.