Mercurial > hg > isophonics-drupal-site
diff core/modules/system/tests/fixtures/update/drupal-8.block-test-enabled.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/core/modules/system/tests/fixtures/update/drupal-8.block-test-enabled.php Wed Nov 29 16:09:58 2017 +0000 @@ -0,0 +1,49 @@ +<?php + +/** + * @file + * Partial database to mimic the installation of the block_test module. + */ + +use Drupal\Core\Database\Database; +use Symfony\Component\Yaml\Yaml; + +$connection = Database::getConnection(); + +// Set the schema version. +$connection->insert('key_value') + ->fields([ + 'collection' => 'system.schema', + 'name' => 'block_test', + 'value' => 'i:8000;', + ]) + ->execute(); + +// Update core.extension. +$extensions = $connection->select('config') + ->fields('config', ['data']) + ->condition('collection', '') + ->condition('name', 'core.extension') + ->execute() + ->fetchField(); +$extensions = unserialize($extensions); +$extensions['module']['block_test'] = 8000; +$connection->update('config') + ->fields([ + 'data' => serialize($extensions), + ]) + ->condition('collection', '') + ->condition('name', 'core.extension') + ->execute(); + +// Install the block configuration. +$config = file_get_contents(__DIR__ . '/../../../../block/tests/modules/block_test/config/install/block.block.test_block.yml'); +$config = Yaml::parse($config); +$connection->insert('config') + ->fields(['data', 'name', 'collection']) + ->values([ + 'name' => 'block.block.test_block', + 'data' => serialize($config), + 'collection' => '', + ]) + ->execute();