Skip to content
Snippets Groups Projects
Commit 9979c5f0 authored by catch's avatar catch
Browse files

Issue #3121229 by alexpott, Neslee Canil Pinto, xjm: Remove config_environment module

parent fb0ced50
No related branches found
No related tags found
8 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1012Issue #3226887: Hreflang on non-canonical content pages,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10,!596Issue #3046532: deleting an entity reference field, used in a contextual view, makes the whole site unrecoverable,!496Issue #2463967: Use .user.ini file for PHP settings,!144Issue #2666286: Clean up menu_ui to conform to Drupal coding standards,!16Draft: Resolve #2081585 "History storage",!13Resolve #2903456
......@@ -457,7 +457,7 @@
"dist": {
"type": "path",
"url": "core",
"reference": "0c1a56a591d5a55e9beca019038289a445114d6b"
"reference": "e3d324da27c1060f5f9982ee20aa7f9845303fd2"
},
"require": {
"asm89/stack-cors": "^1.1",
......@@ -524,7 +524,6 @@
"drupal/color": "self.version",
"drupal/comment": "self.version",
"drupal/config": "self.version",
"drupal/config_environment": "self.version",
"drupal/config_translation": "self.version",
"drupal/contact": "self.version",
"drupal/content_moderation": "self.version",
......
......@@ -68,7 +68,6 @@
"drupal/color": "self.version",
"drupal/comment": "self.version",
"drupal/config": "self.version",
"drupal/config_environment": "self.version",
"drupal/config_translation": "self.version",
"drupal/contact": "self.version",
"drupal/content_moderation": "self.version",
......
name: 'Configuration Environment'
type: module
description: 'Allows administrators to manage configuration environments.'
package: Core (Experimental)
version: VERSION
dependencies:
- drupal:config
<?php
/**
* @file
* Allows site administrators to modify environment configuration.
*/
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function config_environment_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.config_environment':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Configuration Environment module provides a mechanism for handling configuration changes between different environments. For more information, see the <a href=":config_environment">online documentation for the Configuration Environment module</a>.', [':config_environment' => 'https://www.drupal.org/node/3047873']) . '</p>';
return $output;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment