Verified Commit aa1e7921 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3341092 by quietone, catch: Remove Statistics from core

parent 39d743b8
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -137,10 +137,6 @@ AddEncoding gzip svgz
  RewriteCond %{REQUEST_URI} !/core/[^/]*\.php$
  # Allow access to test-specific PHP files:
  RewriteCond %{REQUEST_URI} !/core/modules/system/tests/https?\.php
  # Allow access to Statistics module's custom front controller.
  # Copy and adapt this rule to directly execute PHP files in contributed or
  # custom modules or to run another PHP application in the same directory.
  RewriteCond %{REQUEST_URI} !/core/modules/statistics/statistics\.php$
  # Deny access to any other PHP files that do not match the rules above.
  # Specifically, disallow autoload.php from being served directly.
  RewriteRule "^(.+/.*|autoload)\.php($|/)" - [F]
+0 −3
Original line number Diff line number Diff line
@@ -367,9 +367,6 @@ Shortcut
Stark
- John Albin Wilkins 'JohnAlbin' https://www.drupal.org/u/johnalbin

Statistics
- ?

Syslog
- Mariano D'Agostino 'dagmar' https://www.drupal.org/u/dagmar

+0 −4
Original line number Diff line number Diff line
@@ -137,10 +137,6 @@ AddEncoding gzip svgz
  RewriteCond %{REQUEST_URI} !/core/[^/]*\.php$
  # Allow access to test-specific PHP files:
  RewriteCond %{REQUEST_URI} !/core/modules/system/tests/https?\.php
  # Allow access to Statistics module's custom front controller.
  # Copy and adapt this rule to directly execute PHP files in contributed or
  # custom modules or to run another PHP application in the same directory.
  RewriteCond %{REQUEST_URI} !/core/modules/statistics/statistics\.php$
  # Deny access to any other PHP files that do not match the rules above.
  # Specifically, disallow autoload.php from being served directly.
  RewriteRule "^(.+/.*|autoload)\.php($|/)" - [F]
+0 −2
Original line number Diff line number Diff line
@@ -49,8 +49,6 @@ class MigrationPluginListTest extends KernelTestBase {
    'path',
    'search',
    'shortcut',
    // @todo Remove statistics in https://www.drupal.org/project/drupal/issues/3341092
    'statistics',
    'syslog',
    'system',
    'taxonomy',
+0 −2
Original line number Diff line number Diff line
@@ -11,7 +11,6 @@
use Drupal\migrate\Plugin\migrate\destination\EntityConfigBase;
use Drupal\migrate\Plugin\migrate\destination\EntityContentBase;
use Drupal\shortcut\Plugin\migrate\destination\ShortcutSetUsers;
use Drupal\statistics\Plugin\migrate\destination\NodeCounter;
use Drupal\system\Plugin\migrate\destination\d7\ThemeSettings;
use Drupal\Tests\migrate_drupal\Kernel\MigrateDrupalTestBase;
use Drupal\Tests\migrate_drupal\Traits\CreateMigrationsTrait;
@@ -122,7 +121,6 @@ protected function getContentClasses() {
    return [
      EntityContentBase::class,
      BlockedIp::class,
      NodeCounter::class,
      UserData::class,
    ];
  }
Loading