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

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Plugin\Block\StatisticsPopularBlock.
*/
namespace Drupal\statistics\Plugin\Block;
use Drupal\Core\Access\AccessResult;

View file

@ -1,8 +1,4 @@
<?php
/**
* @file
* Contains \Drupal\statistics\StatisticsSettingsForm.
*/
namespace Drupal\statistics;

View file

@ -1,46 +0,0 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Tests\Migrate\d6\MigrateStatisticsConfigsTest.
*/
namespace Drupal\statistics\Tests\Migrate\d6;
use Drupal\config\Tests\SchemaCheckTestTrait;
use Drupal\migrate_drupal\Tests\d6\MigrateDrupal6TestBase;
/**
* Upgrade variables to statistics.settings.yml.
*
* @group migrate_drupal_6
*/
class MigrateStatisticsConfigsTest extends MigrateDrupal6TestBase {
use SchemaCheckTestTrait;
/**
* {@inheritdoc}
*/
public static $modules = array('statistics');
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->executeMigration('d6_statistics_settings');
}
/**
* Tests migration of statistics variables to statistics.settings.yml.
*/
public function testStatisticsSettings() {
$config = $this->config('statistics.settings');
$this->assertIdentical(FALSE, $config->get('access_log.enabled'));
$this->assertIdentical(259200, $config->get('access_log.max_lifetime'));
$this->assertIdentical(0, $config->get('count_content_views'));
$this->assertConfigSchema(\Drupal::service('config.typed'), 'statistics.settings', $config->get());
}
}

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Tests\StatisticsAdminTest.
*/
namespace Drupal\statistics\Tests;
use Drupal\simpletest\WebTestBase;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Tests\StatisticsAttachedTest.
*/
namespace Drupal\statistics\Tests;
use Drupal\simpletest\WebTestBase;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Tests\StatisticsLoggingTest.
*/
namespace Drupal\statistics\Tests;
use Drupal\simpletest\WebTestBase;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Tests\StatisticsReportsTest.
*/
namespace Drupal\statistics\Tests;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Tests\StatisticsTestBase.
*/
namespace Drupal\statistics\Tests;
use Drupal\simpletest\WebTestBase;

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Tests\StatisticsTokenReplaceTest.
*/
namespace Drupal\statistics\Tests;
/**

View file

@ -1,10 +1,5 @@
<?php
/**
* @file
* Contains \Drupal\statistics\Tests\Views\IntegrationTest.
*/
namespace Drupal\statistics\Tests\Views;
use Drupal\views\Tests\ViewTestBase;