This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "drupal/recommended-project", | |
"description": "Project template for Drupal projects with a relocated document root", | |
"type": "project", | |
"license": "GPL-2.0-or-later", | |
"homepage": "https://www.drupal.org/project/drupal", | |
"support": { | |
"docs": "https://www.drupal.org/docs/user_guide/en/index.html", | |
"chat": "https://www.drupal.org/node/314178" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Drupal\Tests\example_module\Kernel; | |
use Drupal\Core\Config\FileStorage; | |
use Drupal\KernelTests\KernelTestBase; | |
use Drupal\node\Entity\Node; | |
use Drupal\taxonomy\Entity\Term; | |
use Drupal\Tests\ConfigTestTrait; | |
use Drupal\Tests\node\Traits\NodeCreationTrait; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/google_analytics_counter.info.yml b/google_analytics_counter.info.yml | |
index c6fa03c..de083d8 100755 | |
--- a/google_analytics_counter.info.yml | |
+++ b/google_analytics_counter.info.yml | |
@@ -2,5 +2,6 @@ name: 'Google Analytics Counter' | |
type: module | |
description: 'Lightweight page view counter drawing on data collected by Google Analytics.' | |
core: 8.x | |
+core_version_requirement: ^8 || ^9 | |
package: Statistics |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<script src="https://cdn.jsdelivr.net/react/15.0.0/react.js"></script> | |
<script src="https://cdn.jsdelivr.net/react/15.0.0/react-dom.js"></script> | |
<title>素のReact</title> | |
</head> | |
<body> | |
<div id="l-content"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @file | |
* AWS configuration file. | |
*/ | |
if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') { | |
$base_root = 'https'; | |
} | |
// We're behind a proxy that talks to the web server via HTTP. | |
elseif (isset($_SERVER['HTTP_X_FORWARDED_PROTO'])) { |