Skip to content
Snippets Groups Projects
Commit 5448b07b authored by catch's avatar catch
Browse files

Issue #3065545 by Wim Leers, lauriii, alexpott, xjm: Deprecate base theme fallback to Stable

parent 90a550d5
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Showing
with 120 additions and 2 deletions
...@@ -22,7 +22,6 @@ class ThemeExtensionList extends ExtensionList { ...@@ -22,7 +22,6 @@ class ThemeExtensionList extends ExtensionList {
*/ */
protected $defaults = [ protected $defaults = [
'engine' => 'twig', 'engine' => 'twig',
'base theme' => 'stable',
'regions' => [ 'regions' => [
'sidebar_first' => 'Left sidebar', 'sidebar_first' => 'Left sidebar',
'sidebar_second' => 'Right sidebar', 'sidebar_second' => 'Right sidebar',
...@@ -247,6 +246,23 @@ protected function doGetBaseThemes(array $themes, $theme, array $used_themes = [ ...@@ -247,6 +246,23 @@ protected function doGetBaseThemes(array $themes, $theme, array $used_themes = [
*/ */
protected function createExtensionInfo(Extension $extension) { protected function createExtensionInfo(Extension $extension) {
$info = parent::createExtensionInfo($extension); $info = parent::createExtensionInfo($extension);
// In the past, Drupal used to default to the `stable` theme as the base
// theme. Explicitly opting out by specifying `base theme: false` was (and
// still is) possible. However, defaulting to `base theme: stable` prevents
// automatic updates to the next major version of Drupal, since each major
// version may have a different version of "the stable theme", for example:
// - for Drupal 8: `stable`
// - for Drupal 9: `stable9`
// - for Drupal 10: `stable10`
// - et cetera
// It is impossible to reliably determine which should be used by default,
// hence we now require the base theme to be explicitly specified.
if (!isset($info['base theme'])) {
@trigger_error(sprintf('There is no `base theme` property specified in the %s.info.yml file. The optionality of the `base theme` property is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. All Drupal 8 themes must add `base theme: stable` to their *.info.yml file for them to continue to work as-is in future versions of Drupal. Drupal 9 requires the `base theme` property to be specified. See https://www.drupal.org/node/3066038', $extension->getName()), E_USER_DEPRECATED);
$info['base theme'] = 'stable';
}
// Remove the default Stable base theme when 'base theme: false' is set in // Remove the default Stable base theme when 'base theme: false' is set in
// a theme .info.yml file. // a theme .info.yml file.
if ($info['base theme'] === FALSE) { if ($info['base theme'] === FALSE) {
......
name: 'BigPipe test theme' name: 'BigPipe test theme'
type: theme type: theme
base theme: stable
description: 'Theme for testing BigPipe edge cases.' description: 'Theme for testing BigPipe edge cases.'
version: VERSION version: VERSION
core: 8.x core: 8.x
name: '<"Cat" & ''Mouse''>' name: '<"Cat" & ''Mouse''>'
type: theme type: theme
base theme: stable
description: 'Theme for testing special characters in block admin.' description: 'Theme for testing special characters in block admin.'
core: 8.x core: 8.x
regions: regions:
......
name: 'Block test theme' name: 'Block test theme'
type: theme type: theme
base theme: stable
description: 'Theme for testing the block system' description: 'Theme for testing the block system'
version: VERSION version: VERSION
core: 8.x core: 8.x
......
name: 'Color test theme' name: 'Color test theme'
type: theme type: theme
base theme: stable
description: 'Theme for testing the color module' description: 'Theme for testing the color module'
version: VERSION version: VERSION
core: 8.x core: 8.x
......
name: 'Configuration Translation Test Theme' name: 'Configuration Translation Test Theme'
type: theme type: theme
base theme: stable
description: 'Theme for testing the configuration translation mapper system' description: 'Theme for testing the configuration translation mapper system'
version: VERSION version: VERSION
core: 8.x core: 8.x
name: Test Help Topics name: Test Help Topics
type: theme type: theme
base theme: stable
description: A theme to test help topics. description: A theme to test help topics.
version: VERSION version: VERSION
core: 8.x core: 8.x
name: 'Statistics test attached theme' name: 'Statistics test attached theme'
type: theme type: theme
base theme: stable
description: 'Theme for testing attached library' description: 'Theme for testing attached library'
version: VERSION version: VERSION
core: 8.x core: 8.x
...@@ -2,7 +2,19 @@ ...@@ -2,7 +2,19 @@
namespace Drupal\Tests\system\Functional\Update; namespace Drupal\Tests\system\Functional\Update;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\DependencyInjection\ServiceProviderInterface;
use Drupal\Core\Extension\ExtensionDiscovery;
use Drupal\Core\Extension\InfoParser;
use Drupal\Core\Extension\InfoParserInterface;
use Drupal\Core\Extension\ModuleHandlerInterface;
use Drupal\Core\Extension\ThemeEngineExtensionList;
use Drupal\Core\Extension\ThemeExtensionList;
use Drupal\Core\State\StateInterface;
use Drupal\FunctionalTests\Update\UpdatePathTestBase; use Drupal\FunctionalTests\Update\UpdatePathTestBase;
use org\bovigo\vfs\vfsStream;
/** /**
* Tests the upgrade path for introducing the Stable base theme. * Tests the upgrade path for introducing the Stable base theme.
...@@ -12,7 +24,7 @@ ...@@ -12,7 +24,7 @@
* @group system * @group system
* @group legacy * @group legacy
*/ */
class StableBaseThemeUpdateTest extends UpdatePathTestBase { class StableBaseThemeUpdateTest extends UpdatePathTestBase implements ServiceProviderInterface {
/** /**
* The theme handler. * The theme handler.
...@@ -31,6 +43,22 @@ protected function setDatabaseDumpFiles() { ...@@ -31,6 +43,22 @@ protected function setDatabaseDumpFiles() {
]; ];
} }
/**
* {@inheritdoc}
*/
public function register(ContainerBuilder $container) {
$container->getDefinition('extension.list.theme')
->setClass(VfsThemeExtensionList::class);
}
/**
* {@inheritdoc}
*/
protected function prepareEnvironment() {
parent::prepareEnvironment();
$GLOBALS['conf']['container_service_providers']['test'] = $this;
}
/** /**
* {@inheritdoc} * {@inheritdoc}
*/ */
...@@ -38,10 +66,28 @@ protected function setUp() { ...@@ -38,10 +66,28 @@ protected function setUp() {
parent::setUp(); parent::setUp();
$this->themeHandler = $this->container->get('theme_handler'); $this->themeHandler = $this->container->get('theme_handler');
$this->themeHandler->refreshInfo(); $this->themeHandler->refreshInfo();
$vfs_root = vfsStream::setup('root');
$vfs_root->addChild(vfsStream::newDirectory($this->siteDirectory));
$site_dir = $vfs_root->getChild($this->siteDirectory);
vfsStream::create([
'themes' => [
'test_stable' => [
'test_stable.info.yml' => file_get_contents(DRUPAL_ROOT . '/core/tests/fixtures/test_stable/test_stable.info.yml'),
'test_stable.theme' => file_get_contents(DRUPAL_ROOT . '/core/tests/fixtures/test_stable/test_stable.theme'),
],
'stable' => [
'stable.info.yml' => file_get_contents(DRUPAL_ROOT . '/core/themes/stable/stable.info.yml'),
'stable.theme' => file_get_contents(DRUPAL_ROOT . '/core/themes/stable/stable.theme'),
],
],
], $site_dir);
} }
/** /**
* Tests that the Stable base theme is installed if necessary. * Tests that the Stable base theme is installed if necessary.
*
* @expectedDeprecation There is no `base theme` property specified in the test_stable.info.yml file. The optionality of the `base theme` property is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. All Drupal 8 themes must add `base theme: stable` to their *.info.yml file for them to continue to work as-is in future versions of Drupal. Drupal 9 requires the `base theme` property to be specified. See https://www.drupal.org/node/3066038
*/ */
public function testUpdateHookN() { public function testUpdateHookN() {
$this->assertTrue($this->themeHandler->themeExists('test_stable')); $this->assertTrue($this->themeHandler->themeExists('test_stable'));
...@@ -55,3 +101,41 @@ public function testUpdateHookN() { ...@@ -55,3 +101,41 @@ public function testUpdateHookN() {
} }
} }
class VfsThemeExtensionList extends ThemeExtensionList {
/**
* The extension discovery for this extension list.
*
* @var \Drupal\Core\Extension\ExtensionDiscovery
*/
protected $extensionDiscovery;
/**
* {@inheritdoc}
*/
public function __construct(string $root, string $type, CacheBackendInterface $cache, InfoParserInterface $info_parser, ModuleHandlerInterface $module_handler, StateInterface $state, ConfigFactoryInterface $config_factory, ThemeEngineExtensionList $engine_list, $install_profile) {
parent::__construct($root, $type, $cache, $info_parser, $module_handler, $state, $config_factory, $engine_list, $install_profile);
$this->extensionDiscovery = new ExtensionDiscovery('vfs://root');
$this->infoParser = new VfsInfoParser();
}
/**
* {@inheritdoc}
*/
public function getExtensionDiscovery() {
return $this->extensionDiscovery;
}
}
class VfsInfoParser extends InfoParser {
/**
* {@inheritdoc}
*/
public function parse($filename) {
return parent::parse("vfs://root/$filename");
}
}
name: 'Theme test with semver core version' name: 'Theme test with semver core version'
type: theme type: theme
base theme: stable
description: 'Test theme which has semver core version.' description: 'Test theme which has semver core version.'
version: VERSION version: VERSION
core_version_requirement: ^8 || ^9 core_version_requirement: ^8 || ^9
name: 'Theme test with invalid core version' name: 'Theme test with invalid core version'
type: theme type: theme
base theme: stable
description: 'Test theme which has an invalid core version.' description: 'Test theme which has an invalid core version.'
version: VERSION version: VERSION
core: 7.x core: 7.x
name: 'Theme test with invalid semver core version' name: 'Theme test with invalid semver core version'
type: theme type: theme
base theme: stable
description: 'Test theme which has an invalid semver core version.' description: 'Test theme which has an invalid semver core version.'
version: VERSION version: VERSION
core_version_requirement: ^7 core_version_requirement: ^7
name: 'Theme test with missing content region' name: 'Theme test with missing content region'
type: theme type: theme
base theme: stable
description: 'Test theme which has a non-existent content region.' description: 'Test theme which has a non-existent content region.'
version: VERSION version: VERSION
core: 8.x core: 8.x
......
type: theme type: theme
base theme: stable
core: 8.x core: 8.x
name: 'Test theme with a too long name' name: 'Test theme with a too long name'
version: VERSION version: VERSION
name: Test features name: Test features
type: theme type: theme
base theme: stable
core: 8.x core: 8.x
description: 'Test theme to test theme settings with limited features.' description: 'Test theme to test theme settings with limited features.'
features: features:
......
name: 'Twig registry loader test' name: 'Twig registry loader test'
type: theme type: theme
base theme: stable
description: 'Support module for Twig registry loader testing.' description: 'Support module for Twig registry loader testing.'
version: VERSION version: VERSION
core: 8.x core: 8.x
name: 'Update test base theme' name: 'Update test base theme'
type: theme type: theme
base theme: stable
description: 'Test theme which acts as a base theme for other test subthemes.' description: 'Test theme which acts as a base theme for other test subthemes.'
version: VERSION version: VERSION
core: 8.x core: 8.x
name: 'User Test theme' name: 'User Test theme'
type: theme type: theme
base theme: stable
description: 'Theme for testing the available fields in user twig template' description: 'Theme for testing the available fields in user twig template'
version: VERSION version: VERSION
core: 8.x core: 8.x
name: Views test checkboxes theme name: Views test checkboxes theme
type: theme type: theme
base theme: stable
description: Theme for testing Views rendering of checkboxes. description: Theme for testing Views rendering of checkboxes.
version: VERSION version: VERSION
core: 8.x core: 8.x
name: Views test theme name: Views test theme
type: theme type: theme
base theme: stable
description: Theme for testing Views functionality. description: Theme for testing Views functionality.
version: VERSION version: VERSION
core: 8.x core: 8.x
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