Mercurial > hg > isophonics-drupal-site
comparison core/modules/views/tests/fixtures/update/entity-link-output-url.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
1 <?php | |
2 | |
3 /** | |
4 * @file | |
5 * Test fixture. | |
6 */ | |
7 | |
8 use Drupal\Core\Database\Database; | |
9 use Drupal\Core\Serialization\Yaml; | |
10 | |
11 $connection = Database::getConnection(); | |
12 | |
13 $connection->insert('config') | |
14 ->fields([ | |
15 'collection' => '', | |
16 'name' => 'views.view.node_link_update_test', | |
17 'data' => serialize(Yaml::decode(file_get_contents('core/modules/views/tests/fixtures/update/views.view.node_link_update_test.yml'))), | |
18 ]) | |
19 ->execute(); |